forked from shipitjs/shipit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"license": "MIT",
"private": true,
"scripts": {
"build": "lerna run build",
"ci": "yarn build && yarn lint && yarn test --ci --coverage && codecov",
"dev": "lerna run build --parallel -- --watch",
"format": "prettier --write \"**/*.{js,json,md}\"",
"lint": "eslint .",
"release": "lerna publish --conventional-commits && conventional-github-releaser --preset angular",
"test": "jest --runInBand"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"chalk": "^2.4.1",
"codecov": "^3.1.0",
"conventional-github-releaser": "^3.1.2",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"glob": "^7.1.3",
"jest": "^24.9.0",
"jest-watch-typeahead": "^0.4.0",
"lerna": "^3.16.4",
"mkdirp": "^0.5.1",
"mock-utf8-stream": "^0.1.1",
"prettier": "^1.14.3",
"std-mocks": "^1.0.1"
},
"workspaces": [
"packages/*"
]
}