forked from woodenconsulting/react-js-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-js-diagrams",
"version": "3.1.3",
"repository": {
"type": "git",
"url": "https://github.com/woodenconsulting/react-js-diagrams.git"
},
"scripts": {
"start": "node_modules/.bin/babel-node server.js --presets es2015,es2016,es2017,stage-0",
"lint": "eslint src --rulesdir eslint-rules",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register test/.config.js test/**/*-test.js",
"prepublish": "npm run build",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --presets es2015,es2016,es2017,stage-0",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --presets es2015,es2016,es2017,stage-0",
"build": "npm run build:commonjs && npm run build:es"
},
"keywords": [
"web",
"diagram",
"react",
"flowchart",
"simple",
"links",
"nodes"
],
"browser": "dist/rjd.js",
"main": "lib/main.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"author": "Jeff Wooden <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": "4.17.4"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-core": "6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "6.4.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-es2016": "6.22.0",
"babel-preset-es2017": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"babel-runtime": "6.23.0",
"cross-env": "^4.0.0",
"css-loader": "0.26.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"expect.js": "^0.3.1",
"express": "^4.15.2",
"jsdom": "^11.0.0",
"mocha": "^3.4.2",
"node-sass": "4.5.0",
"prop-types": "^15.5.6",
"react": "^15.1.0",
"react-dnd": "^2.2.4",
"react-dnd-html5-backend": "^2.2.4",
"react-dom": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-logger": "^2.10.2",
"redux-undo": "^0.6.1",
"sass-loader": "6.0.0",
"sinon": "^2.3.2",
"source-map-loader": "0.1.6",
"style-loader": "0.13.1",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
}
}