-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 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
67
{
"name": "typescript-miscellaneous",
"version": "0.1.1",
"description": "Miscellaneous TypeScript utilities",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksxnodemodules/typescript-miscellaneous.git"
},
"keywords": [
"typescript",
"miscellaneous",
"utility"
],
"author": "Hoàng Văn Khải <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksxnodemodules/typescript-miscellaneous/issues"
},
"homepage": "https://github.com/ksxnodemodules/typescript-miscellaneous#readme",
"dependencies": {
"@types/node": "^10.11.3",
"tslib": "^1.9.3"
},
"devDependencies": {
"typescript": "^4.0.0",
"standard": "^17.0.0",
"tslint": "^6.0.0",
"tslint-config-standard": "^8.0.1",
"jest": "^26.0.0",
"babel-jest": "^26.0.0",
"ts-jest": "^24.0.0",
"yaml-jest": "^1.0.5",
"iter-tools": "^6.1.4",
"static-type-assert": "^3.0.1",
"clean-typescript-build": "^0.1.0",
"@types/jest": "^24.0.0"
},
"scripts": {
"clean": "clean-typescript-build .",
"build": "tsc",
"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",
"postpublish": "npm run clean"
},
"standard": {
"env": {
"jest": true,
"browser": true
}
},
"engines": {
"typescript": ">= 3.0.0",
"node": ">= 8.9.0"
}
}