-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "legendables",
"version": "1.0.0-rc.6",
"description": "declarative legend",
"main": "index.js",
"scripts": {
"build": "tsc; npm run build:styles",
"build:styles": "node-sass -- src/styles.scss src/styles.css",
"build:umd": "rollup -c -i index.ts -o dist/legendables.js",
"build:umd:min": "NODE_ENV=production rollup -c -i index.ts -o dist/legendables.min.js",
"prepublish": "npm run build",
"start": "webpack-dev-server --content-base ./example --config ./example/webpack.config.js",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jonathan Huang <grokut@gmail.com>",
"license": "MIT",
"dependencies": {
"d3-dispatch": "^1.0.3",
"d3-format": "^1.2.0",
"snabbdom": "^0.7.0"
},
"devDependencies": {
"@types/d3": "^4.10.0",
"css-loader": "^0.28.7",
"node-sass": "^4.5.3",
"prettier": "^1.7.0",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^2.0.1",
"style-loader": "^0.18.2",
"ts-loader": "^2.3.7",
"typescript": "^2.5.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
}
}