-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "react-bpmn",
"version": "0.2.0",
"description": "Embed BPMN 2.0 diagrams in your React app",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"all": "npm run bundle",
"bundle": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs",
"prepublishOnly": "npm run bundle",
"postinstall": "cd example && npm install",
"start": "cd example && npm start"
},
"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.19.0",
"@babel/preset-env": "^7.19.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.0",
"babel-preset-react-app": "^10.0.1",
"cross-env": "^7.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.18.0"
}
}