-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.08 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
{
"name": "typescript-template-library",
"version": "1.0.0",
"ts-project-version": "2.3.0",
"description": "typescript-template-library",
"private": "true",
"scripts": {
"start": "npm run dev",
"dev": "ts-node script/example.ts",
"watch": "nodemon .",
"test": "npm run build:dev:clean && npm run coverage",
"test:typescript": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.dev.json",
"test:dev": "npm run lint && npm run test:typescript",
"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"
},
"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-appconfig": "^1.2.0",
"ts-node": "^10.4.0",
"ts-packager": "^1.1.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StatelessStudio/typescript-template-library.git"
},
"author": "stateless-studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/StatelessStudio/typescript-template-library/issues"
},
"homepage": "https://github.com/StatelessStudio/typescript-template-library#readme",
"keywords": []
}