-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
66 lines (66 loc) · 2.24 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
{
"name": "@bpmn-io/form-js-editor",
"version": "1.11.3",
"description": "Edit forms - powered by bpmn.io",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"./dist/assets/form-js-editor.css": "./dist/assets/form-js-editor.css",
"./dist/assets/form-js-editor-base.css": "./dist/assets/form-js-editor-base.css",
"./dist/assets/dragula.css": "./dist/assets/draggle.css",
"./dist/assets/properties-panel.css": "./dist/assets/properties-panel.css",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"scripts": {
"all": "run-s lint test build",
"build": "run-p bundle bundle:scss generate-types",
"bundle": "rollup -c --failAfterWarnings --bundleConfigAsCjs",
"bundle:scss": "sass --no-source-map --load-path=\"../../node_modules\" assets/index.scss dist/assets/form-js-editor.css",
"bundle:watch": "run-p bundle:watch-js bundle:watch-scss",
"bundle:watch-js": "rollup -c -w --bundleConfigAsCjs",
"bundle:watch-scss": "npm run bundle:scss -- --watch",
"dev": "npm test -- --auto-watch --no-single-run",
"example:dev": "cd example && npm start",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"generate-types": "tsc --allowJs --skipLibCheck --declaration --emitDeclarationOnly --outDir dist/types src/index.js && copyfiles --flat src/**.d.ts dist/types",
"test": "cross-env NODE_ENV=test karma start",
"prepublishOnly": "npm run build"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/form-js.git",
"directory": "packages/form-js-editor"
},
"author": {
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
},
"dependencies": {
"@bpmn-io/draggle": "^4.1.1",
"@bpmn-io/form-js-viewer": "^1.11.3",
"@bpmn-io/properties-panel": "^3.24.1",
"array-move": "^4.0.0",
"big.js": "^6.2.2",
"ids": "^1.0.5",
"min-dash": "^4.2.2",
"min-dom": "^4.1.0",
"preact": "^10.5.14"
},
"sideEffects": [
"*.css"
],
"files": [
"dist"
]
}