-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "typescript",
"version": "1.0.0",
"description": "Starting point for typescript projects",
"main": "lib/index.js",
"scripts": {
"transpile": "rm -rf lib && tsc --pretty",
"prettier": "prettier --loglevel error --write './src/**/*.ts'",
"lint": "tslint -c ./tslint.json --project tsconfig.json",
"build-if-changed": "build-if-changed",
"build": "npm run build-if-changed && npm run prettier && npm run lint",
"pretest": "npm run build",
"test": "jest --coverage",
"coverage": "jest --coverage && open coverage/lcov-report/index.html",
"precommit": "npm t",
"start": "npm run build && node lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omegaphoenix/typescript.git"
},
"keywords": [
"typescript",
"boilerplate"
],
"author": "Justin Leong",
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.7",
"build-if-changed": "^0.1.2",
"husky": "^2.1.0",
"jest": "^24.7.1",
"prettier": "~1.17.0",
"source-map-support": "^0.5.12",
"tslint": "^5.9.1",
"typescript": "~3.4.5"
},
"jest": {},
"prettier": {
"printWidth": 110,
"trailingComma": "all",
"singleQuote": true
},
"license": "MIT",
"bugs": {
"url": "https://github.com/omegaphoenix/typescript/issues"
},
"homepage": "https://github.com/omegaphoenix/typescript#readme"
}