forked from bpmn-io/react-bpmn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 968 Bytes
/
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
{
"name": "react-bpmn",
"version": "0.2.0",
"description": "Embed BPMN 2.0 diagrams in your React app",
"main": "dist/index.js",
"scripts": {
"all": "npm run bundle",
"bundle": "NODE_ENV=production rollup -c",
"prepublishOnly": "npm run bundle"
},
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/react-bpmn.git"
},
"keywords": [
"bpmn-js",
"bpmn",
"react-js",
"react"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^2.3.4",
"babel-preset-react-app": "^10.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.38.0"
}
}