-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
68
{
"name": "ts-packager",
"version": "1.1.0",
"ts-project-version": "2.2.0",
"description": "TypeScript npm packager",
"private": true,
"bin": {
"ts-packager": "./bin/index.js"
},
"scripts": {
"start": "npm run dev",
"dev": "ts-node src/main.ts",
"watch": "nodemon .",
"test": "npm run build:dev:clean && npm run coverage",
"test:prod": "npm run build:prod:clean && npm run coverage",
"clean": "rm -rf dist",
"build:dev": "npm run lint && npm run preprocess && npm run compile && npm run postprocess",
"build:dev:clean": "npm run clean && npm run build:dev",
"build:prod": "npm run preprocess prod && npm run lint:prod && npm run compile && npm run postprocess prod",
"build:prod:clean": "npm run clean && npm run build:prod",
"compile": "tsc",
"preprocess": "",
"postprocess": "",
"doc": "typedoc --out docs src",
"lint": "eslint . --ext .ts --fix",
"lint:prod": "eslint . --ext .ts --fix --config=.eslintrc.prod.json",
"coverage": "nyc npm run coverage-test",
"coverage-test": "jasmine --config=jasmine.json",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"admin:example": "ts-node script/example"
},
"dependencies": {
"command-line-args": "^5.2.0",
"fs-extra": "^10.0.0",
"ts-appconfig": "^1.2.0",
"ts-async-bootstrap": "^2.1.0",
"ts-error-handler": "^1.0.2",
"ts-tiny-log": "^1.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jasmine": "^3.10.3",
"@types/node": "^16.11.21",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"coveralls": "^3.1.1",
"eslint": "^8.7.0",
"jasmine": "^4.0.2",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statelessstudio/ts-packager.git"
},
"bugs": {
"url": "https://github.com/statelessstudio/ts-packager/issues"
},
"homepage": "https://github.com/statelessstudio/ts-packager#readme",
"keywords": [
"typescript",
"npm",
"packager"
]
}