-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "jints",
"title": "Big Integer",
"description": "Big Integer",
"version": "1.0.6",
"homepage": "http://github.com/zswang/jints",
"main": "jints.js",
"author": {
"name": "zswang",
"url": "http://weibo.com/zswang"
},
"repository": {
"type": "git",
"url": "https://github.com/zswang/jints.git"
},
"keywords": [
"big",
"integer",
"int64",
"uint64"
],
"bugs": {
"url": "https://github.com/zswang/jints/issues"
},
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-examplejs": "0.0.9",
"gulp-jdists": "^2.0.17",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^3.1.6",
"gulp-uglify": "^2.1.2",
"typescript": "^2.0.3",
"mocha": "^2.0.1",
"istanbul": "^0.3.17",
"should": "^4.1.0",
"uglify-js": "^2.4.15",
"jshint": "^2.5.8"
},
"scripts": {
"_update_version": "node version.js",
"_dist": "npm run example && gulp dist && npm run test",
"example": "gulp example",
"test": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- -R spec",
"mocha": "npm run example && mocha",
"dist": "npm run _update_version && npm run _dist",
"lint": "jshint src/*.js *.json"
},
"files": [
"jints.js",
"jints.min.js",
"src/ts"
]
}