-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.03 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
{
"name": "sequential-workflow-designer-react",
"description": "React wrapper for Sequential Workflow Designer component.",
"version": "0.14.1",
"type": "module",
"main": "./lib/esm/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": {
"require": "./lib/index.d.ts",
"default": "./lib/index.d.ts"
},
"default": {
"require": "./lib/cjs/index.cjs",
"default": "./lib/esm/index.js"
}
}
},
"author": {
"name": "NoCode JS",
"url": "https://nocode-js.com/"
},
"homepage": "https://nocode-js.com/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nocode-js/sequential-workflow-designer.git"
},
"files": [
"lib/"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepare": "cp ../LICENSE LICENSE",
"clean": "rm -rf lib && rm -rf build && rm -rf node_modules/.cache/rollup-plugin-typescript2",
"start": "rollup -c --watch",
"build": "yarn clean && rollup -c",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write ./src",
"eslint": "eslint ./src --ext .ts",
"test:single": "jest",
"test": "jest --clearCache && jest --watchAll"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sequential-workflow-designer": "^0.14.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sequential-workflow-designer": "^0.14.1",
"rollup": "^3.18.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"keywords": [
"workflow",
"designer",
"builder",
"nocode",
"lowcode",
"flow",
"react",
"reactjs"
]
}