forked from learn-anything/react-mindmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
{
"name": "react-mindmap",
"version": "2.0.6",
"description": "React component for rendering mind maps",
"license": "MIT",
"contributors": [
{
"name": "Angelo Gazzola",
"email": "[email protected]",
"url": "https://github.com/nglgzz"
}
],
"files": [
"dist",
"src/parser"
],
"main": "dist/index.js",
"bin": {
"react-mindmap-parse": "./src/parser/index.js"
},
"repository": "learn-anything/react-mindmap",
"scripts": {
"parse": "node src/parser/index.js",
"lint": "eslint .; sass-lint sass/* -v",
"build": "webpack -p",
"test": "start-storybook -p 3000 -c .storybook"
},
"dependencies": {
"d3": "^4.9.1",
"fs-walk": "0.0.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"http-server": "^0.9.0",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.5",
"sass-lint": "^1.10.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"webpack": "^2.5.1"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
}
}