-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 KB
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
{
"private": true,
"author": "TypeScriptLibs and Contributors",
"description": "TypeScript Tester",
"homepage": "https://typescriptlibs.eu/",
"license": "MIT",
"name": "@typescriptlibs/tst",
"type": "module",
"version": "0.1.0",
"bin": "bin/tst.mjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bugs": {
"url": "https://github.com/typescriptlibs/tst/issues"
},
"devDependencies": {
"@types/node": "^10.17.60",
"@types/yargs": "^17.0.24",
"@typescriptlibs/tst": "file:./",
"husky": "^8.0.3",
"typescript": "~4.9.5"
},
"engines": {
"node": ">=10.17.0"
},
"files": [
"bin/",
"lib/",
"AUTHORS.md",
"LICENSE.md",
"README.md"
],
"peerDependencies": {
"@types/node": ">=10.17.0",
"typescript": ">=1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/typescriptlibs/tst.git"
},
"scripts": {
"build": "tsc -p src/",
"clean": "rm -rf lib tst-run",
"release": "npm publish --access public",
"test": "npm run build && tst --reset --verbose tst/",
"test:ci": "tst --reset --verbose tst/",
"watch": "tsc -b src/ -w"
}
}