-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
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
{
"name": "github-actions",
"description": "A collection of pre-release GitHub Actions",
"main": "index.js",
"repository": {
"type": "git",
"url": "ssh://git@github.com/saulhardman/github-actions.git"
},
"author": "Saul Hardman <hello@iamsaul.co.uk>",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prettier": "prettier '**/*.{js,yml,md}'",
"eslint": "eslint '**/*.js'",
"lint": "yarn prettier --check && yarn eslint --quiet",
"lint:fix": "yarn prettier --write && yarn eslint --quiet",
"test": "jest packages",
"test:watch": "yarn test --watch",
"build": "lerna run build",
"release": "yarn lint && yarn test && yarn build && lerna publish"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.2.2",
"lerna": "^3.22.1",
"msw": "^0.20.4",
"prettier": "2.0.5"
}
}