-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "wrench",
"version": "0.0.0",
"private": true,
"description": "Wrench is a toolset that provides various build tools for NodeJS, NPM and related libraries",
"repository": {
"type": "git",
"url": "https://github.com/gavar/wrench"
},
"license": "ISC",
"author": {
"name": "Max Stankevich",
"email": "[email protected]",
"url": "https://github.com/gavar"
},
"workspaces": {
"packages": [
"@types/*",
"packages/*",
"packages/_/*"
]
},
"scripts": {
"build": "yarn clean && yarn wsrun --bin npm -c pack",
"clean": "rimraf out && yarn wsrun -c clean",
"format:pack": "fixpack && sort-package-json && yarn wsrun -c format:pack",
"release": "yarn clean && semantic-release --no-ci",
"sync:pack": "copycat-pack -r && typesync && yarn && yarn format:pack",
"wsrun": "wsrun --stages --fast-exit -p @wrench/* rollup-*"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@wrench/commitlint-config"
]
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^12.6.8",
"dotenv": "^8.0.0",
"dotenv-expand": "^5.1.0",
"husky": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2",
"wsrun": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"commonDependencies": {
"@emulsy/async": "<1.0.0",
"colors": "^1.3.0",
"fs-extra": "^8.1.0",
"lodash": "^4.14",
"micromatch": "^4.0.2",
"semantic-release": "16.0.0-beta.22",
"slash": "^3.0.0",
"source-map-support": "^0.5.12",
"tslib": "^1.10.0",
"tstt": "^1.0.4",
"yargs": "^13.3.0"
},
"ywl": {
"pattern": "@emulsy/*"
}
}