-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.39 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
78
79
80
81
82
83
84
85
86
{
"name": "bpmn-js-i18n",
"version": "0.1.0",
"description": "bpmn-js i18n extension",
"main": "index.js",
"scripts": {
"all": "run-s lint test bundle",
"bundle": "webpack --mode production",
"bundle:watch": "webpack -w",
"start": "webpack serve --content-base ./example --open",
"lint": "eslint .",
"test": "karma start",
"dev": "npm test -- --auto-watch --no-single-run",
"deploy": "npm run all && gh-pages -d example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philippfromme/bpmn-js-i18n.git"
},
"contributors": [
{
"name": "Philipp Fromme",
"url": "https://github.com/philippfromme"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/philippfromme/bpmn-js-i18n/issues"
},
"homepage": "https://github.com/philippfromme/bpmn-js-i18n#readme",
"files": [
"assets",
"lib",
"index.js"
],
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-react-jsx": "^7.16.5",
"@bpmn-io/properties-panel": "^0.10.2",
"@carbon/colors": "^10.36.0",
"@carbon/icons-react": "^10.46.0",
"babel-loader": "^8.2.3",
"bpmn-js": "^8.5.0",
"carbon-components": "^10.25.0",
"carbon-components-react": "^7.25.0",
"carbon-icons": "^7.0.7",
"chai": "^4.3.4",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^6.6.0",
"dotenv-webpack": "^7.1.0",
"eslint": "^7.26.0",
"eslint-plugin-bpmn-io": "^0.12.0",
"file-drops": "^0.4.0",
"gh-pages": "^3.2.3",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^5.0.0",
"mocha": "^8.4.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.5",
"preact": "^10.6.6",
"puppeteer": "^9.1.1",
"raw-loader": "^0.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.49.8",
"sass-loader": "^12.6.0",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"bpmn-i18n-moddle": "^0.2.0",
"bpmn-js-properties-panel": "^1.0.0-alpha.0",
"iso-639-1": "^2.1.12",
"min-dash": "^3.7.0"
}
}