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
/
package.json
107 lines (107 loc) · 3.23 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
{
"name": "@netlify/framework-info",
"version": "9.5.0",
"description": "Framework detection utility",
"type": "module",
"main": "./dist/index.umd.cjs",
"exports": {
"node": "./src/main.js",
"default": "./dist/index.umd.cjs"
},
"files": [
"build/*.js",
"src/**/*.js",
"dist/index.umd.cjs"
],
"scripts": {
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/",
"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": "vite build",
"build:browser:site-root": "cpy index.html ../dist",
"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:ci": "run-s test:ci:*",
"test:ci:ava": "c8 -r lcovonly -r text -r json ava"
},
"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,scripts,test}/**/*.{cjs,mjs,js,jsx,html}\" --ignore-pattern \"test/fixtures/**/*\"",
"prettier": "--ignore-path .gitignore --loglevel warn \"{src,scripts,test}/**/*.{cjs,mjs,js}\" \"*.{cjs,mjs,js,md,yml,json}\" \"!package-lock.json\" \"!CHANGELOG.md\""
},
"dependencies": {
"ajv": "^8.0.0",
"filter-obj": "^3.0.0",
"find-up": "^6.3.0",
"fs-extra": "^10.1.0",
"is-plain-obj": "^4.0.0",
"locate-path": "^7.0.0",
"p-filter": "^3.0.0",
"p-locate": "^6.0.0",
"process": "^0.11.10",
"read-pkg-up": "^9.0.0",
"semver": "^7.3.4",
"url": "^0.11.0"
},
"devDependencies": {
"@netlify/eslint-config-node": "^6.0.0",
"ava": "^4.0.0",
"babel-loader": "^8.2.2",
"c8": "^7.11.0",
"cpy": "^9.0.0",
"cpy-cli": "^4.0.0",
"del": "^6.0.0",
"husky": "^7.0.4",
"path-browserify": "^1.0.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"test-each": "^4.0.0",
"tmp-promise": "^3.0.2",
"vite": "^3.1.6"
},
"engines": {
"node": "^14.14.0 || >=16.0.0"
},
"ava": {
"verbose": true,
"workerThreads": false
}
}