-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.11 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
{
"name": "javascript-int64-benchmarks",
"version": "1.0.0",
"description": "benchmark interoping with native int64 types by various methods in node.js javascript",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"build": "node-gyp rebuild",
"build:dev": "bear --append -- node-gyp rebuild --debug",
"native-debug": "cgdb node -ex 'run node_modules/ts-node/dist/bin.js index.ts'",
"native-debug:cgdb": "cgdb node -ex 'run node_modules/ts-node/dist/bin.js index.ts'",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"update-readme": "( sed '/```results/q' README.md; npm start; echo '\n```\n' ) | sponge README.md"
},
"author": "Mike Belousov",
"license": "MIT",
"dependencies": {
"@types/heap": "^0.2.29",
"benchmark": "^2.1.4",
"heap": "^0.2.7",
"microtime": "^3.0.0",
"ts-node": "^10.5.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/node": "^17.0.21",
"bindings": "^1.5.0",
"node-addon-api": "^4.3.0",
"node-gyp": "^9.0.0",
"typescript": "^4.6.2"
}
}