-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "lodash-arithmetic",
"version": "1.0.0",
"description": "Lodash mixins for arbitrary-precision arithmetic",
"main": "lodash-arithmetic.js",
"scripts": {
"build": "uglifyjs -o lodash-arithmetic.min.js lodash-arithmetic.js",
"test": "mocha lodash-arithmetic.spec.js && npm run cover",
"cover": "istanbul cover _mocha lodash-arithmetic.spec.js --dir reports --report lcovonly -x '**.spec.js'",
"bump": "npm run build && npm version patch && git push --tags origin master && npm publish",
"bump:minor": "npm run build && npm version minor && git push --tags origin master && npm publish",
"bump:major": "npm run build && npm version major && git push --tags origin master && npm publish"
},
"files": [
"README.md",
"lodash-arithmetic.js",
"lodash-arithmetic.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Boulangerie/lodash-arithmetic.git"
},
"keywords": [
"lodash",
"mixins",
"arithmetic",
"maths",
"operations",
"float",
"decimal",
"number",
"precision",
"arbitrary",
"big"
],
"author": "Yannick Galatol <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Boulangerie/lodash-arithmetic/issues"
},
"homepage": "https://github.com/Boulangerie/lodash-arithmetic",
"dependencies": {
"lodash": "^4.17.2"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"uglify-js": "^2.7.5"
}
}