This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
129 lines (129 loc) · 4.08 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@netlify/framework-info",
"version": "6.1.0",
"description": "Framework detection utility",
"main": "./src/main.js",
"browser": "./dist/index.js",
"files": [
"dist/index.js",
"build/*.js",
"src/**/*.js"
],
"scripts": {
"prepublishOnly": "npm ci && run-s build test",
"build": "run-s build:*",
"build:json": "node scripts/transform_json.js",
"build:browser": "run-s build:browser:*",
"build:browser:core": "webpack --config scripts/webpack.config.core.js",
"build:browser:site-react": "webpack --config scripts/webpack.config.site.js",
"build:browser:site-vanilla": "cpy site/vanilla/index.html dist/vanilla",
"build:browser:site-root": "cpy site/index.html dist",
"develop:site-react": "webpack serve --config scripts/webpack.config.site.js",
"test": "npm run format && npm run 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:dev:ava": "ava",
"test:dev:cypress": "node cypress/run.js",
"test:ci": "run-s test:ci:*",
"test:ci:ava": "nyc -r lcovonly -r text -r json ava",
"test:ci:cypress": "node cypress/run.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run format"
}
},
"keywords": [
"dependency-management",
"continuous-integration",
"deployment",
"es6",
"framework",
"gulp",
"javascript",
"html",
"library",
"markdown",
"nodejs",
"npmjs",
"package-manager",
"webapp",
"jamstack",
"static-site-generator",
"static-site",
"gatsby",
"hugo",
"netlify"
],
"author": "Netlify, Inc",
"license": "MIT",
"repository": "netlify/framework-info",
"homepage": "https://github.com/netlify/framework-info",
"bugs": {
"url": "https://github.com/netlify/framework-info/issues"
},
"config": {
"eslint": "--ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"{src,site,scripts,test,cypress}/**/*.{js,jsx,html}\" --ignore-pattern \"test/fixtures/**/*\"",
"prettier": "--ignore-path .gitignore --loglevel warn \"{src,site,scripts,test,cypress}/**/*.js\" \"*.{js,md,yml,json}\" \"!package-lock.json\" \"!CHANGELOG.md\""
},
"dependencies": {
"ajv": "^8.0.0",
"filter-obj": "^2.0.1",
"is-plain-obj": "^3.0.0",
"locate-path": "^6.0.0",
"p-filter": "^2.1.0",
"p-locate": "^5.0.0",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@netlify/eslint-config-node": "^4.0.0",
"ava": "^3.0.0",
"babel-loader": "^8.2.2",
"cpy": "^8.1.0",
"cpy-cli": "^3.1.1",
"cypress": "^7.0.0",
"del": "^6.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-react": "^7.21.5",
"execa": "^5.0.0",
"html-webpack-plugin": "^5.0.0",
"husky": "^4.0.0",
"is-ci": "^3.0.0",
"node-static": "^0.7.11",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"path-browserify": "^1.0.1",
"puppeteer": "^12.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"test-each": "^2.0.0",
"tmp-promise": "^3.0.2",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.0.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Opera versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 ChromeAndroid versions"
],
"engines": {
"node": "^12.20.0 || ^14.14.0 || >=16.0.0"
}
}