generated from devzolo/nodejs-addon-api-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
51
52
53
54
55
{
"name": "@devzolo/node-native-glut",
"version": "1.0.0",
"main": "dist",
"author": "Raphael-ZoLo <zolotorevsky@gmail.com>",
"license": "MIT",
"repository": "https://github.com/devzolo/node-native-glut",
"publishConfig": {
"@devzolo:registry": "https://npm.pkg.github.com"
},
"files": [
"dist",
"bin"
],
"binary": {
"module_name": "native-glut",
"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/node-native-glut"
},
"deps": {
"freeglut-3.2.1": {
"url": "https://razaoinfo.dl.sourceforge.net/project/freeglut/freeglut/3.2.1/freeglut-3.2.1.tar.gz"
}
},
"scripts": {
"install_old": "node-pre-gyp install --fallback-to-build",
"build": "node-pre-gyp install --build-from-source",
"postbuild": "tsc",
"dist": "tsc",
"package": "tsc&&node-pre-gyp install --build-from-source&&jest&&./node_modules/.bin/node-pre-gyp build package",
"test": "jest --coverage",
"sources": "deps-source"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.6",
"node-addon-api": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"dotenv": "^10.0.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.4.4"
}
}