This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
66
{
"name": "ts-pipe-compose",
"version": "0.0.0",
"description": "Pipeline and Compose with TypeScript definition",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ksxnodemodules/ts-pipe-compose.git"
},
"keywords": [
"pipeline",
"compose",
"typescript"
],
"author": "Hoàng Văn Khải <hvksmr1996@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksxnodemodules/ts-pipe-compose/issues"
},
"homepage": "https://github.com/ksxnodemodules/ts-pipe-compose#readme",
"dependencies": {
"@types/node": "^12.7.2",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.18",
"babel-jest": "^24.9.0",
"clean-typescript-build": "^0.1.0",
"fs-extra": "^8.1.0",
"iter-tools": "^6.2.5",
"jest": "^24.9.0",
"json5": "^2.1.0",
"standard": "^14.0.0",
"static-type-assert": "^3.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3",
"yaml-jest": "^1.0.5"
},
"scripts": {
"clean": "clean-typescript-build .",
"build": "npm run codegen",
"codegen": "node codegen",
"test": "npm run clean && npm run type-check && npm run lint && jest --coverage",
"type-check": "tsc --noEmit",
"lint": "npm run standard && npm run tslint",
"standard": "standard",
"standard:fix": "npm run standard --fix",
"tslint": "tslint --project .",
"tslint:fix": "npm run tslint --fix",
"prepublishOnly": "npm test && npm run build"
},
"standard": {
"env": {
"jest": true,
"browser": true
}
},
"engines": {
"node": ">= 8.9.0"
}
}