-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 861 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
{
"name": "finalize-addon",
"description": "Object finalization based on N-API for Node.js v8.6.0+",
"version": "0.1.0",
"author": "Stanley Shyiko <stanley.shyiko@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shyiko/node-finalize-addon"
},
"main": "index.js",
"scripts": {
"lint": "standard *.js test/*.js",
"lint-fix": "standard --fix *.js test/*.js",
"test": "node-gyp rebuild && node --expose-gc --no-warnings index.test.js",
"release": "yarn lint && yarn test && yarn version && npm publish"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"standard": "^8.6.0"
},
"pre-commit": "lint",
"engines": {
"node": ">=8.6.0",
"yarn": ">=1.0.0"
},
"standard": {
"globals": ["gc"]
},
"keywords": [
"n-api",
"weak",
"finalize"
]
}