forked from saby1101/node-tspsolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 836 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
{
"name": "node-tspsolver",
"version": "1.0.2",
"description": "TSP solver",
"main": "src/index",
"types": "src/index",
"repository": {
"type": "git",
"url": "https://github.com/saby-echo/node-tspsolver.git"
},
"scripts": {
"pretty": "prettier --write src/*.js",
"test": "jest src/spec.js",
"prebuild": "node-gyp configure",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"clean": "node-gyp clean"
},
"engineStrict": true,
"engines": {
"node": ">=5.0.0"
},
"author": "Saby",
"license": "MIT",
"devDependencies": {
"jest": "^24.9.0",
"prettier": "^1.18.2"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0",
"node-gyp": "^5.0.3"
}
}