-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2 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
69
70
71
72
73
74
75
{
"name": "@lenne.tech/typescript-starter",
"version": "0.0.4",
"description": "Start for a new typescript project",
"keywords": [
"lenne.Tech",
"typescript",
"starter",
"npm",
"package"
],
"author": "Kai Haase",
"homepage": "http://lenne.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lenneTech/typescript-starter"
},
"bugs": {
"url": "https://github.com/lenneTech/typescript-starter/issues"
},
"scripts": {
"build": "npm run lint && npm run test && npm run clean-build && npm run compile",
"clean-build": "rimraf ./build",
"compile": "tsc -p .",
"coverage": "jest --coverage",
"format": "prettier --write 'src/**/*.{js,ts,tsx,json}'",
"lint": "eslint --ext .js,.ts src",
"postinstall": "path-exists ./dist/bin/welcome.bin.js && node ./dist/bin/welcome.bin.js $INIT_CWD || true",
"prepack": "npm run build",
"preversion": "npm run lint",
"start": "ts-node src/index.ts",
"test": "jest",
"watch": "jest --watch"
},
"dependencies": {},
"devDependencies": {
"@lenne.tech/npm-package-helper": "0.0.10",
"@types/jest": "24.0.23",
"@types/node": "12.12.8",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"husky": "3.0.9",
"jest": "24.9.0",
"path-exists-cli": "1.0.0",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"ts-node": "8.5.2",
"typescript": "3.7.2"
},
"peerDependencies": {},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "tests"
},
"husky": {
"hooks": {
"pre-commit": "ts-node --skip-project extras/sync-version.ts && pretty-quick --staged",
"pre-push": "npm run lint && npm run test"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"LICENSE",
"README.md"
]
}