-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "libdivecomputerjs",
"version": "0.7.2",
"main": "index.js",
"license": "MIT",
"types": "index.d.ts",
"homepage": "https://github.com/blackshadev/libdivecomputerjs",
"bugs": {
"url": "https://github.com/blackshadev/libdivecomputerjs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/blackshadev/libdivecomputerjs.git"
},
"scripts": {
"configure": "cmake-js configure",
"install": "cmake-js compile",
"build": "cmake-js build",
"test": "mocha --require ./tshook.js --recursive test/*.spec.ts test/**/*.spec.ts",
"sample": "yarn configure && yarn build && ts-node examples/download-eonsteel.ts",
"all": "yarn configure && yarn build && yarn test",
"clean": "(cd build && make clean && cd ..) || cmake-js clean"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.10",
"chai": "^4.3.7",
"chai-asserttype": "^1.0.5",
"mocha": "^10.2.0",
"node-gyp": "^9.4.0",
"segfault-handler": "^1.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^7.2.1",
"node-addon-api": "^7.0.0"
}
}