-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.95 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
{
"name": "porc",
"version": "0.1.4",
"description": "Process Orchestrator",
"main": "lib/index.js",
"contributors": [
{
"name": "Carsten Rohrbach",
"email": "[email protected]",
"url": "https://github.com/robaca",
"githubUsername": "robaca"
}
],
"repository": "https://github.com/codecentric/porc.git",
"license": "MIT",
"packageManager": "[email protected]",
"bin": "./lib/index.js",
"scripts": {
"prepare": "husky install",
"build": "yarn compile && yarn schema",
"compile": "tsc",
"test": "mocha 'src/**/*.spec.ts'",
"lint": "eslint 'src/**/*.ts'",
"schema": "typescript-json-schema tsconfig.json --required --noExtraProps --titles FileConfig -o porc-schema.json",
"porc": "yarn compile && node lib/index.js"
},
"dependencies": {
"chalk": "^4.0.0",
"child-process-promise": "^2.2.1",
"commander": "^9.4.1",
"find-config": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-like": "^1.1.1",
"@types/child-process-promise": "^2.2.2",
"@types/find-config": "^1.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@types/sinon-chai": "^3.2.9",
"@types/yargs": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.47.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-like": "^1.1.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "latest",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.2",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"sinon-chai-in-order": "^0.1.0",
"ts-node": "^10.9.1",
"typescript": "*",
"typescript-json-schema": "^0.55.0"
}
}