-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1023 Bytes
/
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
{
"name": "karton",
"version": "0.4.1",
"description": "Create sandbox for package e2e tests",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "[email protected]:piotr-oles/karton.git",
"author": "Piotr Oleś <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"format": "prettier src --write",
"release": "auto shipit"
},
"files": [
"lib/*"
],
"dependencies": {
"chalk": "^4.1.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^9.1.0",
"strip-ansi": "^6.0.0",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.7",
"auto": "^10.16.5",
"husky": "^4.0.0",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
},
"auto": {
"plugins": [
"npm",
"released"
],
"onlyPublishWithReleaseLabel": true,
"shipit": {
"noChangelog": true
}
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn build"
}
}
}