forked from lenneTech/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.11 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
{
"name": "@lenne.tech/cli",
"version": "0.0.26",
"description": "lenne.Tech CLI: lt",
"keywords": [
"lenne.Tech",
"cli",
"lt"
],
"author": "Kai Haase",
"homepage": "http://lenne.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lenneTech/cli"
},
"bugs": {
"url": "https://github.com/lenneTech/cli/issues"
},
"bin": {
"lt": "bin/lt"
},
"scripts": {
"start": "bin/lt",
"start:build": "npm run build && bin/lt --compiled-build",
"start:compiled": "bin/lt --compiled-build",
"format": "prettier --write 'src/**/*.{js,ts,tsx,json}' '!src/templates/**/*'",
"lint": "tslint -p .",
"clean-build": "rimraf ./build",
"compile": "tsc -p .",
"copy-templates": "if [ -e ./src/templates ]; then cp -a ./src/templates ./build/; fi",
"build": "npm run lint && npm run test && npm run clean-build && npm run compile && npm run copy-templates",
"test": "jest --testTimeout=60000",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"prepublishOnly": "npm run build",
"preversion": "npm run lint"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"dependencies": {
"find-file-up": "2.0.1",
"gluegun": "3.3.4",
"open": "6.4.0",
"rimraf": "3.0.0",
"ts-node": "8.3.0",
"typescript": "3.6.2"
},
"devDependencies": {
"@lenne.tech/npm-package-helper": "0.0.9",
"@types/jest": "24.0.18",
"@types/node": "12.7.3",
"husky": "3.0.4",
"jest": "24.9.0",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"ts-jest": "24.0.2",
"tslint": "5.19.0",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "8.0.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "ts-node --skip-project extras/sync-version.ts && pretty-quick --staged",
"pre-push": "npm run lint && npm run test"
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}