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
/
Copy pathpackage.json
106 lines (106 loc) · 2.65 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
99
100
101
102
103
104
105
106
{
"name": "paeckchen-core",
"version": "0.4.2",
"description": "paeckchen core library",
"main": "dist/src/index.js",
"files": [
"dist/src",
"index.d.ts"
],
"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-core"
},
"keywords": [],
"author": {
"name": "Markus Wolf",
"email": "knister.peter@shadowrun-clan.de"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/paeckchen/paeckchen/issues"
},
"homepage": "https://github.com/paeckchen/paeckchen#readme",
"devDependencies": {
"@knisterpeter/standard-tslint": "^1.4.0",
"@types/browser-resolve": "0.0.5",
"@types/common-tags": "1.4.0",
"@types/lodash": "~4.14.69",
"@types/mkdirp": "~0.5.0",
"@types/node": "~10.5.0",
"ava": "0.25.0",
"common-tags": "1.8.0",
"conventional-changelog-lint": "2.0.0",
"coveralls": "2.13.2",
"cz-customizable": "5.2.0",
"husky": "0.15.0-beta.2",
"lodash": "4.17.9",
"nyc": "11.7.3",
"rimraf": "2.6.2",
"source-map-support": "0.5.6",
"standard-version": "4.4.0",
"tipi-cli": "3.1.0",
"tslint": "5.9.0",
"typescript": "2.5.3"
},
"dependencies": {
"@types/acorn": "~4.0.0",
"@types/chokidar": "~1.4.30",
"@types/estree": "~0.0.34",
"acorn": "4.0.10",
"ast-types": "0.11.4",
"browser-resolve": "1.11.3",
"chokidar": "2.0.3",
"escodegen": "1.10.0",
"mkdirp": "0.5.1",
"node-libs-browser": "2.1.0",
"paeckchen-sorcery": "0.1.1"
},
"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",
"dist/src/index.js",
"dist/test",
"coverage",
"test"
]
}
}