-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.46 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.46 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "enigojs",
"version": "0.0.13",
"description": "input simulation",
"main": "index.js",
"scripts": {
"copyfile": "node -r fs -e \"fs.copyFileSync('src/native/index.d.ts','native/index.d.ts')\"",
"install": "neon build --release && npm run copyfile",
"build": "tsc",
"watch": "tsc -watch",
"lint": "eslint --ext .ts --fix src/",
"prepare": "npm run lint && npm run build"
},
"files": [
"/index.js",
"/index.js.map",
"/index.d.ts",
"/index.d.ts.map",
"/lib/",
"/native/",
"/src/",
"!/native/target/**",
"!/native/index.node",
"!/native/artifacts.json"
],
"keywords": [
"keyboard",
"mouse",
"autohotkey",
"enigo"
],
"repository": {
"type": "git",
"url": "https://github.com/mantou132/enigojs.git"
},
"author": "mt",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"copyfiles": "^2.1.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"neon-cli": "^0.3.3",
"prettier": "^1.19.0",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}