forked from netlify/build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.86 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
{
"name": "netlify-build",
"private": true,
"version": "0.0.0",
"description": "Netlify build module",
"main": "index.js",
"author": "Netlify Inc.",
"scripts": {
"installOldNpm": "npm install && lerna bootstrap --no-ci",
"test": "run-s format test:dev",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "run-e format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier",
"test:dev": "run-s test:dev:*",
"test:ci": "run-s test:ci:*",
"test:dev:ava": "ava",
"test:ci:ava": "nyc -r lcovonly -r text -r json ava",
"prepublishOnly": "run-s prepublishOnly:*",
"prepublishOnly:checkout": "run-local \"git checkout master\"",
"prepublishOnly:pull": "run-local \"git pull\"",
"prepublishOnly:install": "run-local \"npm ci\"",
"prepublishOnly:test": "npm test"
},
"config": {
"eslint": "--ignore-path .gitignore --ignore-pattern \"packages/*/tests/**/snapshots/*.md\" --cache --format=codeframe --max-warnings=0 \"{packages,.github}/**/*.{js,md,html}\" \"*.{js,md,html}\" \".*.{js,md,html}\"",
"prettier": "--ignore-path .gitignore --loglevel=warn \"{packages,.github}/**/*.{js,md,yml,json,html}\" \"*.{js,yml,json,html}\" \".*.{js,yml,json,html}\" \"!**/package-lock.json\" \"!**/CHANGELOG.md\" \"!package-lock.json\""
},
"workspaces": [
"packages/*"
],
"ava": {
"files": [
"packages/**/tests/*.js",
"packages/**/tests/**/tests.js"
],
"compileEnhancements": false,
"babel": false,
"verbose": true
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run format"
}
},
"keywords": [
"nodejs",
"javascript",
"windows",
"macos",
"linux",
"shell",
"bash",
"build",
"terminal",
"deployment",
"es6",
"serverless",
"continuous-integration",
"continuous-delivery",
"ci",
"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": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@netlify/eslint-config-node": "^2.6.2",
"ava": "^2.4.0",
"lerna": "^3.22.1",
"nyc": "^15.0.0"
},
"engines": {
"node": ">=8.3.0"
}
}