-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.41 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
{
"name": "fraction-calculator",
"version": "1.0.14",
"description": "A precise fraction and decimal calculation library.",
"main": "./dist/fraction-calculator.js",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"build": "yarn build:dev && yarn build:prod && yarn build:polyfill",
"build:prod": "NODE_ENV=production webpack --config webpack.config.js",
"build:dev": "NODE_ENV=development webpack --config webpack.config.js",
"build:polyfill": "NODE_ENV=production POLYFILL=1 webpack --config webpack.config.js",
"open:cov": "open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dennis-jiang/fraction-calculator.git"
},
"author": "Dennis Jiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/dennis-jiang/fraction-calculator/issues"
},
"homepage": "https://github.com/dennis-jiang/fraction-calculator#readme",
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.5",
"babel-loader": "8.0.6",
"jest": "24.9.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"core-js": "^3.2.1",
"eslint": "5.16.0",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.18.2",
"babel-eslint": "9.0.0"
},
"keywords": [
"JS",
"JavaScript",
"fraction",
"calculation"
]
}