forked from internetarchive/wayback-radial-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "radial-tree",
"version": "1.0.0",
"description": "Radial Tree Library for Wayback Machine",
"main": "build/radial-tree.cjs.js",
"module": "build/radial-tree.esm.js",
"browser": "build/radial-tree.umd.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build": "rollup -c",
"example:local": "NODE_ENV=develop webpack-dev-server --config config/webpack.config.dev.js --hot",
"lint": "eslint --ignore-path .gitignore src",
"mocha": "mocha-webpack --opts ./tests/mocha-webpack.opts --webpack-config ./config/webpack.config.test.js",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internetarchive/wayback-radial-tree.git"
},
"author": "Internet Archive",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/internetarchive/wayback-radial-tree/issues"
},
"homepage": "https://github.com/internetarchive/wayback-radial-tree#readme",
"dependencies": {
"d3": "^4.12.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"cssnano": "^4.0.0-rc.2",
"del-webpack-plugin": "^1.0.1",
"eslint": "^4.15.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"mocha": "^5.0.0",
"mocha-webpack": "^1.0.1",
"node-sass": "^4.7.2",
"rollup": "^0.53.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-scss": "^0.4.0",
"rollup-plugin-uglify": "^2.0.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0",
"webpack-hot-middleware": "^2.21.0"
}
}