-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "pixel-charts",
"version": "0.5.0",
"description":
"Simple charting library with lines between values represented as series of boxes",
"repository": {
"type": "git",
"url": "https://github.com/bbohen/pixel-charts"
},
"main": "dist/main.js",
"unpkg": "dist/main.js",
"files": ["dist"],
"scripts": {
"build": "rimraf dist && webpack --mode production",
"lint": "eslint .",
"prepare": "npm run lint && npm run test && npm run build",
"start":
"webpack-dev-server --config example/webpack.config.js --open --mode development",
"test": "jest"
},
"author": "Brad Bohen [email protected]",
"license": "ISC",
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.7",
"jest": "^22.4.2",
"rimraf": "^2.6.2",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
}
}