-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
{
"name": "arcus",
"version": "1.0.0",
"description": "Faceted arc diagram",
"main": "src/index.js",
"license": "GNU GPLv3",
"author": "akash goswami",
"keywords": [],
"preferGlobal": false,
"repository": {
"type": "git",
"url": "git+https://github.com/adotg/arcus.git"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.24.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.18.0",
"babel-preset-flow": "6.23.0",
"babel-preset-latest": "6.24.0",
"chai": "3.5.0",
"cross-env": "^5.0.5",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.3.0",
"flow-bin": "0.54.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jsdoc": "3.4.3",
"karma": "1.7.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-mocha": "1.3.0",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "2.0.3",
"mocha": "3.4.2",
"mocha-webpack": "0.7.0",
"transform-runtime": "0.0.0",
"webpack": "2.3.2",
"webpack-dev-server": "2.4.2"
},
"scripts": {
"test": "npm run lint && npm run flow && karma start karma.conf.js ",
"build": "webpack",
"start": "webpack-dev-server",
"lint": "eslint ./src",
"docs": "jsdoc -c ./jsdoc.conf.json",
"flow": "flow"
},
"dependencies": {
"d3-ease": "^1.0.3",
"d3-selection": "^1.3.0",
"d3-transition": "^1.1.1",
"fusioncharts-smartlabel": "^1.0.2"
}
}