-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ts-commands",
"version": "2.0.3",
"description": "ts-commands",
"private": "true",
"typescript-template": {
"base": "1.0.0",
"jasmine": "1.0.0",
"library": "1.0.0"
},
"scripts": {
"build": "tsc",
"start": "ts-node examples/index",
"test": "npm run lint && npm run build && nyc npm run test:run",
"test:run": "jasmine --config=jasmine.json",
"test:dev": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.dev.json",
"doc": "typedoc --out docs src",
"format": "prettier-eslint --write **/*.*",
"lint": "eslint .",
"lint:prod": "npm run lint -- --config=.eslintrc.prod.json",
"script": "ts-node scripts",
"publish": "npm run script -- publish"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"jasmine": "^4.5.0",
"nyc": "^15.1.0",
"prettier": "^2.8.0",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"ts-jasmine-spies": "^1.0.0",
"ts-node": "^10.9.1",
"ts-packager": "^1.1.0",
"ts-script": "^1.0.0",
"ts-tiny-log": "^1.1.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StatelessStudio/ts-commands.git"
},
"author": "StatelessStudio",
"license": "MIT",
"bugs": {
"url": "https://github.com/StatelessStudio/ts-commands/issues"
},
"homepage": "https://github.com/StatelessStudio/ts-commands#readme",
"keywords": [
"typescript",
"commands",
"command",
"command-line",
"command line arguments",
"arguments",
"yargs",
"args"
]
}