-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 865 Bytes
/
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
{
"name": "next-decimal",
"version": "1.0.0",
"description": "An arbitrary-precision decimal lib based on next toolkit.",
"main": "dist/next-decimal.js",
"scripts": {
"test": "mocha test",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "[email protected]:afeiship/next-decimal.git"
},
"keywords": [
"float",
"decimal",
"next"
],
"author": "afei",
"license": "MIT",
"devDependencies": {
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.2.2",
"gulp-size": "^2.1.0",
"gulp-uglify": "^1.5.4",
"mocha": "^3.2.0",
"next-js-core": "^1.0.0",
"size": "^1.0.0"
},
"dependencies": {
"next-float-power": "github:afeiship/next-float-power",
"next-js-core2": "afeiship/next-js-core2",
"next-max": "github:afeiship/next-max"
}
}