-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.44 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@lenne.tech/cli-starter",
"version": "0.0.8",
"description": "lenne.Tech CLI Starter",
"keywords": [
"lenne.Tech",
"cli",
"starter"
],
"author": "Pascal Klesse",
"contributors": [
"Pascal Klesse",
"Kai Haase <kai.haase@lenne.tech> (http://lenne.tech)"
],
"homepage": "https://lenne.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lenneTech/cli-starter"
},
"bugs": {
"url": "https://github.com/lenneTech/cli-starter/issues"
},
"bin": {
"cli-starter": "bin/cli-starter"
},
"scripts": {
"build": "npm run lint && npm run test && npm run clean-build && npm run compile && npm run copy-templates",
"clean-build": "rimraf ./build",
"compile": "tsc -p .",
"copy-templates": "path-exists ./src/templates && rimraf ./build/templates && cpy --parents --cwd=./src templates/**/* ../build || echo 'No templates to copy'",
"coverage": "jest --coverage",
"format": "prettier --write 'src/**/*.{js,ts,tsx,json}' '!src/templates/**/*'",
"lint": "tslint -p .",
"prepublishOnly": "npm run build",
"preversion": "npm run lint",
"rename": "ts-node extras/rename/rename.ts",
"snapupdate": "jest --updateSnapshot",
"start": "node bin/cli-starter",
"start:build": "npm run build && node bin/cli-starter --compiled-build",
"start:compiled": "node bin/cli-starter --compiled-build",
"test": "jest --testTimeout=60000",
"watch": "jest --watch"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"README.md",
"docs",
"bin"
],
"dependencies": {
"@lenne.tech/cli-plugin-helper": "0.0.8",
"gluegun": "4.1.2",
"ts-node": "8.5.4",
"typescript": "3.7.4"
},
"devDependencies": {
"@lenne.tech/npm-package-helper": "latest",
"@types/jest": "24.0.18",
"@types/node": "12.7.11",
"cpy-cli": "2.0.0",
"husky": "3.0.8",
"jest": "24.9.0",
"path-exists-cli": "1.0.0",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "8.0.1"
},
"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"
}
}
}