-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "zuteil",
"version": "1.0.2",
"description": "A highly configurable dispatcher for async jobs, written in TypeScript",
"main": "dist/zuteil.js",
"types": "dist/zuteil.d.ts",
"scripts": {
"compileMarkdown": "node docs/compileMarkdown.js",
"updateDocs": "git checkout docs && git merge main && npm i && npm t && npm run compileMarkdown && git commit -a -m \"autogenerate docs\" && git push && git checkout main",
"postversion": "npm run updateDocs && npm publish",
"prepublishOnly": "npm run lint && npm t && npm run build",
"postpublish": "git push",
"build": "tsc && npm run buildDeclaration",
"buildDeclaration": "tsc --project tsconfig.types.json",
"test": "jest",
"lint": "tslint --config tslint.json --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nkappler/zuteil.git"
},
"bugs": {
"url": "https://github.com/nkappler/zuteil/issues"
},
"keywords": [
"dispatcher",
"scheduler",
"async",
"job",
"task",
"action",
"typescript"
],
"author": "Nikolaj Kappler",
"license": "ISC",
"devDependencies": {
"@types/cli-progress": "^3.8.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"jest": "^26.6.3",
"ts-jest": "^26.5.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"files": [
"dist/zuteil.d.ts",
"dist/zuteil.js",
"dist/deferred.js"
]
}