forked from Place1/node-gir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "node-gir",
"description": "GObject Introspection Repository",
"version": "0.1.5",
"repository": {
"type": "git",
"url": "git://github.com/Place1/node-gir.git"
},
"author": "Tim Caswell <[email protected]>",
"contributors": [
{
"name": "Tim Caswell",
"email": "[email protected]"
},
{
"name": "Piotr Pokora"
},
{
"name": "James Batt",
"email": "[email protected]"
}
],
"main": "src/index.js",
"scripts": {
"build": "node-gyp configure && node-gyp build",
"build:debug": "node-gyp configure --debug && node-gyp build --debug",
"clean": "rm -rf ./build || true",
"test": "node node_modules/jest/bin/jest",
"lint": "node node_modules/eslint/bin/eslint ./",
"lint:fix": "node node_modules/eslint/bin/eslint --fix ./",
"lint:c": "clang-format -i -style=file ./src/*.{h,cpp} ./src/**/*.{h,cpp}"
},
"directories": {
"lib": "."
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"nan": "^2.8.0"
},
"devDependencies": {
"cmake-js": "^3.6.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.0.4"
}
}