-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 2.36 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
{
"name": "hein",
"workspaces": [
"packages/*"
],
"version": "0.0.1",
"description": "Node.js assertion library",
"main": "index.js",
"repository": "[email protected]:KristjanTammekivi/hein.git",
"author": "Kristjan Tammekivi <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"build": "tsc -b .",
"lint:hein": "yarn workspace hein run lint",
"lint:hein-assertion-utils": "yarn workspace hein-assertion-utils run lint",
"lint:hein-plugin-sinon": "yarn workspace hein-plugin-sinon run lint",
"lint:hein-plugin-supertest": "yarn workspace hein-plugin-supertest run lint",
"lint:eslint-config-hein": "yarn workspace eslint-config-hein run lint",
"lint": "yarn lint:hein && yarn lint:hein-assertion-utils && yarn lint:hein-plugin-sinon && yarn lint:hein-plugin-supertest && yarn lint:eslint-config-hein",
"lint:fix": "yarn lint:hein --fix && yarn lint:hein-assertion-utils --fix && yarn lint:hein-plugin-sinon && yarn lint:hein-plugin-supertest --fix && yarn lint:eslint-config-hein --fix",
"release:eslint-config-hein:patch": "sh release.sh eslint-config-hein patch",
"release:eslint-config-hein:minor": "sh release.sh eslint-config-hein minor",
"release:eslint-config-hein:major": "sh release.sh eslint-config-hein major",
"release:hein:patch": "sh release.sh hein patch",
"release:hein:minor": "sh release.sh hein minor",
"release:hein:major": "sh release.sh hein major",
"release:hein-assertion-utils:patch": "sh release.sh hein-assertion-utils patch",
"release:hein-assertion-utils:minor": "sh release.sh hein-assertion-utils minor",
"release:hein-assertion-utils:major": "sh release.sh hein-assertion-utils major",
"release:hein-plugin-sinon:patch": "sh release.sh hein-plugin-sinon patch",
"release:hein-plugin-sinon:minor": "sh release.sh hein-plugin-sinon minor",
"release:hein-plugin-sinon:major": "sh release.sh hein-plugin-sinon major",
"release:hein-plugin-supertest:patch": "sh release.sh hein-plugin-supertest patch",
"release:hein-plugin-supertest:minor": "sh release.sh hein-plugin-supertest minor",
"release:hein-plugin-supertest:major": "sh release.sh hein-plugin-supertest major",
"postinstall": "yarn run build"
},
"devDependencies": {
"auto-changelog": "^2.5.0"
},
"resolutions": {
"**/prettier": "npm:@staycool/prettier@^3.0.1"
}
}