-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
63 lines (63 loc) · 1.89 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": "personality-sunburst-chart",
"version": "2.2.4",
"description": "Generate Sunburst Chart for Personality Insights Profile",
"main": "lib/index.js",
"exportName": "PersonalitySunburstChart",
"scripts": {
"prestart": "npm run compile-docs",
"start": "npm run watch & npm run serve",
"serve": "autoreload-server -w \"**/**.{html,css,js}\" -d ./docs -b 'http://localhost:8080/index-test.html'",
"watch": "nodemon --watch src -x \"npm run compile-docs\"",
"prepublish": "npm run compile && npm run build",
"compile": "node_modules/.bin/webpack",
"compile-docs": "node_modules/.bin/webpack --devtool 'eval-cheap-module-source-map' --output-path docs --entry ./src/charts/index.js",
"build": "./node_modules/.bin/babel src --presets env --out-dir lib",
"test": "npm run lint && npm run codecov",
"lint": "eslint .",
"autofix": "eslint . --fix",
"codecov": "istanbul cover mocha test && codecov"
},
"repository": {
"type": "git",
"url": "[email protected]:personality-insights/sunburst-chart.git"
},
"engines": {
"node": ">4.0"
},
"author": "IBM Corp.",
"license": "Apache-2.0",
"keywords": [
"personality",
"insights",
"sunburst",
"chart",
"visualization",
"ibm",
"watson"
],
"dependencies": {
"d3-color": "^1.0.3",
"d3-hierarchy": "^1.1.5",
"d3-selection": "^1.3.0",
"d3-shape": "^1.2.0",
"lodash.pick": "^4.4.0",
"personality-trait-names": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"d3": "^3.5.14",
"eslint": "^4.19.1",
"istanbul": "^0.4.3",
"mocha": "^5.0.5",
"nodemon": "^1.17.2",
"simple-autoreload-server": "^0.2.7",
"webpack": "^3.11.0"
}
}