This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.39 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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "paeckchen-cli",
"version": "0.4.2",
"description": "paeckchen command line interface",
"main": "dist/src/index.js",
"bin": {
"paeckchen": "./dist/src/index.js"
},
"files": [
"dist/src"
],
"scripts": {
"commitmsg": "conventional-changelog-lint -e",
"linter": "tslint --project ./tsconfig.json --type-check",
"clean": "rimraf dist .nyc_output coverage",
"prebuild": "npm run clean",
"build": "tsc --sourceMap",
"pretest": "npm run clean && tsc --inlineSourceMap",
"test": "nyc --reporter lcov ava",
"watch:build": "tsc --watch --sourceMap",
"watch:test": "npm test -- --watch",
"prerelease": "git checkout master && git pull origin master && npm test && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish",
"update": "tipi update"
},
"tipi": {
"version": "3.1.0",
"template": "typescript"
},
"repository": {
"type": "git",
"url": "paeckchen/paeckchen-cli"
},
"keywords": [],
"author": {
"name": "Markus Wolf",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/paeckchen/paeckchen/issues"
},
"homepage": "https://github.com/paeckchen/paeckchen#readme",
"devDependencies": {
"@knisterpeter/standard-tslint": "^1.0.0",
"@types/debug": "~0.0.29",
"@types/meow": "~3.6.0",
"@types/minimist": "~1.2.0",
"@types/node": "~6.0.52",
"ava": "~0.17.0",
"conventional-changelog-lint": "1.1.0",
"coveralls": "~2.11.15",
"cz-customizable": "4.0.0",
"execa": "~0.6.0",
"husky": "0.12.0",
"nyc": "~10.1.2",
"rimraf": "~2.5.4",
"standard-version": "4.0.0",
"source-map-support": "~0.4.6",
"tipi-cli": "3.1.0",
"tslint": "~4.3.1",
"typescript": "~2.1.4"
},
"dependencies": {
"debug": "~2.6.0",
"meow": "~3.7.0",
"paeckchen-core": "~0.4.2",
"terminal-kit": "~0.26.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"ava": {
"files": [
"dist/test/**/*-test.js"
],
"source": [
"dist/src/**/*.js"
],
"require": [
"source-map-support/register"
]
},
"nyc": {
"exclude": [
"node_modules",
"coverage",
"dist/test",
"test"
]
}
}