generated from devzolo/nodejs-napi-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.26 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
{
"name": "nodejs-napi-project-template",
"version": "1.0.0",
"main": "dist",
"repository": "https://github.com/devzolo/nodejs-napi-project-template.git",
"author": "Raphael-ZoLo <zolotorevsky@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"binary": {
"module_name": "nodejs-napi-project-template",
"module_path": "./bin/{platform}/{arch}/",
"remote_path": "./releases/download/v{version}/",
"package_name": "{module_name}-v{version}-{platform}-{arch}.tar.gz",
"host": "https://github.com/devzolo/nodejs-napi-project-template"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"sources": "deps-source",
"start": "ts-node src",
"build": "tsc&&node-pre-gyp install --build-from-source",
"test": "jest --coverage"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.7",
"node-addon-api": "^4.2.0"
}
}