forked from dcodeIO/long.js
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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": "long",
"version": "3.2.0",
"author": "Daniel Wirtz <dcode@dcode.io>",
"description": "A Long class for representing a 64-bit two's-complement integer value.",
"main": "dist/long.js",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/long.js.git"
},
"bugs": {
"url": "https://github.com/dcodeIO/long.js/issues"
},
"keywords": ["math"],
"dependencies": {
},
"devDependencies": {
"testjs": "latest",
"closurecompiler": "^1.6",
"metascript": "~0"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.6"
},
"scripts": {
"build": "node scripts/build.js",
"make": "npm run-script build && npm run-script compile && npm run-script compress && npm test",
"compile": "ccjs dist/long.js --compilation_level=SIMPLE_OPTIMIZATIONS --create_source_map=dist/long.min.map > dist/long.min.js",
"compress": "gzip -c -9 dist/long.min.js > dist/long.min.js.gz",
"test": "node node_modules/testjs/bin/testjs tests/suite.js"
}
}