forked from changesets/changesets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.9 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
{
"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}\"",
"types:check": "tsc",
"prettier": "prettier --write \"**/*.{js,ts,tsx}\"",
"changeset": "packages/cli/bin.js",
"check-all": "yarn test && yarn lint && yarn types:check",
"release": "yarn build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/changesets/changesets.git"
},
"workspaces": [
"packages/*"
],
"author": "Ben Conolly",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.4.4",
"@manypkg/cli": "^0.8.0",
"@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/node": "^12.7.11",
"@types/prettier": "^1.18.0",
"@types/semver": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"boxen": "^1.3.0",
"chalk": "^2.1.0",
"cli-table": "^0.3.1",
"codecov": "^3.5.0",
"dataloader": "^1.4.0",
"detect-indent": "^6.0.0",
"dotenv": "^8.1.0",
"enquirer": "^2.3.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"fixturez": "^1.1.0",
"fs-extra": "^7.0.1",
"fuzzy": "^0.1.3",
"globby": "^9.2.0",
"human-id": "^1.0.2",
"inquirer": "^3.3.0",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"is-ci": "^2.0.0",
"jest": "^24.7.1",
"jest-fixtures": "^0.5.0",
"jest-in-case": "^1.0.2",
"jest-junit": "^6.4.0",
"js-yaml": "^3.13.1",
"lodash.startcase": "^4.4.0",
"meow": "^5.0.0",
"node-fetch": "^2.5.0",
"outdent": "^0.5.0",
"p-limit": "^2.2.0",
"pkg-dir": "^4.1.0",
"preconstruct": "^0.1.2",
"prettier": "^1.14.3",
"resolve-from": "^5.0.0",
"semver": "^5.4.1",
"spawndamnit": "^2.0.0",
"strip-ansi": "^5.2.0",
"term-size": "^2.1.0",
"tty-table": "^2.7.0",
"typescript": "^3.4.5"
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}