forked from creationix/node-gir
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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": "jest",
"lint": "npm run lint:cpp; npm run lint:js",
"lint:js": "eslint ./",
"lint:cpp": "clang-format -i -style=file ./src/*.h ./src/*.cpp ./src/**/*.h ./src/**/*.cpp"
},
"directories": {
"lib": "."
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"nan": "^2.10.0"
},
"devDependencies": {
"cmake-js": "^3.7.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"jest": "^23.1.0"
}
}