-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.37 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
{
"name": "@ktb/type-tools",
"description": "Typescript type utilities",
"version": "1.1.0",
"author": "KonTrax",
"license": "ISC",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist/",
"prebuild": "npm run typecheck && npm run lint && npm run clean",
"build": "npm run build:ts",
"build:ts": "tsc",
"typecheck": "npm run typecheck:src && npm run typecheck:tests",
"typecheck:src": "tsc -P tsconfig.json --noEmit --emitDeclarationOnly false",
"typecheck:tests": "tsc -P tsconfig.test.json --noEmit --emitDeclarationOnly false",
"lint": "npm run lint:src",
"lint:src": "tslint -p tsconfig.json",
"lint:tests": "tslint -p tsconfig.test.json",
"check:src": "npm run lint:src && npm run typecheck:src",
"check:tests": "npm run lint:tests && npm run typecheck:tests",
"preversion": "npm run build && npm run test",
"prepublishOnly": "npm run build",
"test": "tsc -p __tests__/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KonTrax/type-tools.git"
},
"bugs": {
"url": "https://github.com/KonTrax/type-tools/issues"
},
"homepage": "https://github.com/KonTrax/type-tools#readme",
"devDependencies": {
"@ktb/type-compare": "^0.1.4",
"@ktb/type-test": "^0.1.2",
"rimraf": "^3.0.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}