-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "bogglechart",
"description": "Charts for lemurs",
"version": "0.1.35",
"author": "Ben Hall <[email protected]> (https://ben.am/)",
"license": "MIT",
"homepage": "https://github.com/bhallstein/BoggleChart",
"repository": {
"type": "git",
"url": "git+https://github.com/bhallstein/BoggleChart.git"
},
"keywords": [
"Charts"
],
"files": [
"README.md",
"dist"
],
"main": "dist/BoggleChart.js",
"scripts": {
"build": "rm -rf examples/dist dist && webpack --env prod",
"dev": "rm -rf examples/dist dist && webpack --watch",
"serve": "webpack-dev-server --mode development",
"build-for-publish": "rm -rf examples/dist dist && mkdir dist && babel src/ -d dist",
"prepublishOnly": "npm run build-for-publish"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
}
}