-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.79 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
{
"name": "@melonade/melonade-declaration",
"version": "0.23.0",
"description": "States and type declaration",
"engines": {
"node": ">= 10.13 <11"
},
"main": "./build/index.js",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^10.17.18",
"@types/ramda": "^0.26.44",
"jest": "^25.2.4",
"prettier": "^1.19.1",
"rimraf": "^2.6.3",
"ts-jest": "^25.3.0",
"ts-json-schema-generator": "^0.56.0",
"ts-node": "^8.8.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.17.1",
"typedoc": "^0.15.8",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.8.3"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "npm run clean & tsc -p tsconfig.release.json",
"build:watch": "npm run clean & tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"build:docs": "typedoc --plugin typedoc-plugin-markdown --theme markdown",
"json-schema": "npm run json-schema:workflowDefinition & npm run json-schema:taskDefinition",
"json-schema:workflowDefinition": "ts-json-schema-generator --path ./src/workflowDefinition.ts --type IWorkflowDefinition --tsconfig \"./tsconfig.release.json\" > ./src/workflowDefinition.schema.json",
"json-schema:taskDefinition": "ts-json-schema-generator --path ./src/taskDefinition.ts --type ITaskDefinition --tsconfig \"./tsconfig.release.json\" > ./src/taskDefinition.schema.json",
"build:all": "npm run json-schema && npm run build:docs && npm run build"
},
"license": "MIT",
"dependencies": {
"ajv": "^6.12.0",
"ramda": "^0.26.1",
"tslib": "~1.10.0"
}
}