-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "percent-round",
"version": "2.3.1",
"description": "Calculate percentages from a list of values.",
"main": "dist/percent-round.js",
"module": "dist/percent-round.esm.js",
"types": "./dist/percent-round.d.ts",
"scripts": {
"preversion": "npm run build && npm run test",
"version": "npm run build && npm run test && git add -A dist",
"build": "rollup -c rollup.config.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/super-ienien/percent-round.git"
},
"license": "MIT",
"keywords": [
"percent",
"percentage",
"round",
"rounded",
"rounding",
"calculate",
"always",
"100",
"sum"
],
"author": "Vivien Anglesio",
"bugs": {
"url": "https://github.com/super-ienien/percent-round/issues"
},
"homepage": "https://github.com/super-ienien/percent-round#readme",
"devDependencies": {
"mocha": "^8.2.1",
"mocha-logger": "^1.0.7",
"rollup": "^2.34.2",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-terser": "^7.0.2"
}
}