-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
45 lines (45 loc) · 912 Bytes
/
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
{
"name": "node-bin-gen",
"version": "11.3.0",
"description": "Generate a node binary package",
"author": "Aria Stewart <[email protected]>",
"main": "index.js",
"bin": "index.js",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/aredridel/node-bin-gen.git"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"rimraf": "^6.0.0",
"verror": "^1.9.0",
"yargs": "^17.0.1"
},
"eslintConfig": {
"sourceType": "module",
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"valid-typeof": "error",
"no-undef": "error",
"no-unused-vars": "error",
"no-process-exit": 0,
"no-shadow": 0,
"strict": 0,
"eqeqeq": 0,
"curly": 0
},
"env": {
"node": true,
"es6": true
}
},
"devDependencies": {
"eslint": "^9.0.0"
}
}