-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "magikeys",
"version": "1.0.0",
"description": "Simple JS class that allows you to trigger an action after typing a keys sequence on your keyboard.",
"scripts": {
"serve": "rm ./dist -rf && parcel serve index.html --target browser --out-dir dist",
"build": "rm ./build -rf && parcel build src/Magikeys.ts --target browser --out-dir build",
"ts-check": "tsc --noEmit -p tsconfig.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betaWeb/magikeys.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/betaWeb/magikeys/issues"
},
"homepage": "https://github.com/betaWeb/magikeys#readme",
"devDependencies": {
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^2.0.0",
"typescript": "^3.6.4"
},
"dependencies": {
"pm2": "^4.1.2",
"src": "^1.1.2"
},
"browserslist": [
"last 10 version",
"> 1%",
"IE >= 11"
],
"directories": {
"test": "tests"
},
"jest": {
"preset": "jest-puppeteer",
"globals": {
"PATH": "http://localhost:1234"
},
"testMatch": [
"**/tests/?(*.)(spec|test).js?(x)"
],
"setupFilesAfterEnv": [
"expect-puppeteer"
]
}
}