-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
71 lines (71 loc) · 1.82 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
{
"name": "netlify-build",
"private": true,
"version": "0.0.0",
"description": "Netlify build module",
"type": "module",
"author": "Netlify Inc.",
"scripts": {
"prepare": "husky install",
"lint": "eslint --cache --report-unused-disable-directives --ignore-path .gitignore --max-warnings=0 . --fix",
"lint:ci": "eslint --cache --report-unused-disable-directives --ignore-path .gitignore --max-warnings=0 .",
"build": "lerna run build",
"test": "lerna run test",
"test:ci": "lerna run test:ci",
"format": "prettier --write .",
"format:ci": "prettier --check ."
},
"workspaces": [
"tools",
"packages/*"
],
"keywords": [
"nodejs",
"javascript",
"windows",
"macos",
"linux",
"shell",
"bash",
"build",
"terminal",
"deployment",
"es6",
"serverless",
"ci",
"continuous-integration",
"continuous-delivery",
"continuous-deployment",
"plugins",
"continuous-testing",
"netlify-plugin",
"netlify"
],
"homepage": "https://github.com/netlify/build",
"repository": "https://github.com/netlify/build",
"bugs": {
"url": "https://github.com/netlify/build/issues"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"ci-info": "^3.3.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0",
"lerna": "^5.5.2",
"lint-staged": "^13.0.3",
"nx": "^14.7.13",
"prettier": "^2.8.4"
},
"engines": {
"node": "^14.16.0 || >=16.0.0"
},
"lint-staged": {
"!(packages/*/tests/**/fixtures/**/*)*.+(j|t)s": "eslint --ignore-path .gitignore --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}