forked from changesets/changesets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.33 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
{
"name": "@changesets/repository",
"version": "1.0.0",
"private": true,
"description": "A tool to help manage the versioning and changelogs for open source packages",
"scripts": {
"test": "jest",
"build": "preconstruct build",
"watch": "preconstruct watch",
"postinstall": "preconstruct dev && manypkg check",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "yarn eslint . --ext .ts,.tsx,.js",
"lint:prettier": "prettier --list-different \"**/*.{js,ts,tsx,md}\"",
"types:check": "tsc",
"prettier": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"changeset": "packages/cli/bin.js",
"check-all": "yarn test && yarn lint && yarn types:check",
"version-packages": "changeset version && yarn prettier",
"release": "yarn build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/changesets/changesets.git"
},
"workspaces": [
"packages/*"
],
"author": "Changesets Contributors",
"contributors": [
"Ben Conolly",
"Mitchell Hamilton",
"Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
],
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "^1.1.26",
"@types/fs-extra": "^5.1.0",
"@types/jest": "^24.0.12",
"@types/jest-in-case": "^1.0.1",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.136",
"@types/meow": "^5.0.0",
"@types/prettier": "^1.19.1",
"@types/semver": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"codecov": "^3.6.5",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"jest-junit": "^6.4.0",
"jest-watch-typeahead": "^0.4.2",
"prettier": "^1.19.1",
"typescript": "^4.5.2"
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"prettier": {}
}