-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 991 Bytes
/
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
{
"name": "daab-workflow",
"version": "0.1.0",
"description": "Workflow engine for daab",
"keywords": [
"daab",
"workflow"
],
"license": "MIT",
"author": "Sho Kuroda <krdlab@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">= 12.19.0",
"npm": ">= 7"
},
"scripts": {
"tsc": "tsc",
"build": "rm -r ./dist; tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"peerDependencies": {
"lisb-hubot": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"dependencies": {
"@types/js-yaml": "^4.0.1",
"@types/mustache": "^4.1.2",
"@types/node": "^12.20.15",
"@types/uuid": "^8.3.1",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"uuid": "^8.3.2"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 100
}
}