-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 973 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 973 Bytes
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
{
"name": "integer",
"version": "4.0.0",
"description": "Native 64-bit integers with overflow protection.",
"main": "lib/index.js",
"scripts": {
"install": "prebuild-install || npm run build-release",
"build-release": "node-gyp rebuild --release",
"build-debug": "node-gyp rebuild --debug",
"test": "mocha --exit --bail --timeout 1000 --slow 500"
},
"repository": {
"type": "git",
"url": "git://github.com/JoshuaWise/integer.git"
},
"keywords": [
"integer",
"64-bit",
"64bit",
"int",
"overflow",
"native"
],
"author": "Joshua Wise <joshuathomaswise@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoshuaWise/integer/issues"
},
"homepage": "https://github.com/JoshuaWise/integer#readme",
"dependencies": {
"bindings": "^1.5.0",
"prebuild-install": "^5.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1",
"prebuild": "^10.0.0"
}
}