-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "sequential-workflow-model",
"description": "Extendable data model of sequential workflow.",
"version": "0.2.0",
"homepage": "https://nocode-js.com/",
"author": {
"name": "NoCode JS",
"url": "https://nocode-js.com/"
},
"license": "MIT",
"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"
}
}
},
"files": [
"lib/"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/nocode-js/sequential-workflow-model.git"
},
"scripts": {
"clean": "rm -rf build && rm -rf lib && rm -rf node_modules/.cache/rollup-plugin-typescript2",
"build": "yarn clean && rollup -c",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write ./src",
"test:single": "jest",
"test": "jest --clearCache && jest --watchAll"
},
"devDependencies": {
"typescript": "^4.9.5",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-typescript2": "^0.35.0",
"rollup": "^3.25.3",
"prettier": "^2.8.8",
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
},
"keywords": [
"workflow",
"nocode",
"state machine",
"data model"
]
}