-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.01 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.01 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
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
{
"name": "@netlify/angular-runtime",
"version": "3.0.1",
"description": "Netlify Angular Runtime - Run Angular seamlessly on Netlify.",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.json",
"src/**/*.d.ts",
"context.js",
"context.d.ts",
"common-engine.js",
"common-engine.d.ts",
"manifest.yml"
],
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"default": "./src/index.js"
},
"./common-engine": {
"types": "./src/common-engine.d.ts",
"default": "./src/common-engine.js"
},
"./common-engine.js": {
"types": "./src/common-engine.d.ts",
"default": "./src/common-engine.js"
},
"./context": {
"types": "./src/context.d.ts",
"default": "./src/context.js"
},
"./context.js": {
"types": "./src/context.d.ts",
"default": "./src/context.js"
}
},
"scripts": {
"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": "eslint \"{src,scripts,tests,.github}/**/*.{js,md,html}\"",
"format:fix:lint": "eslint --fix \"{src,scripts,tests,.github}/**/*.{js,md,html}\"",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "prettier . --check --log-level warn",
"format:fix:prettier": "prettier . --write --log-level warn",
"prepublishOnly": "npm ci && npm test",
"pretest:demo": "cd demo && npm ci && netlify build --cwd . --offline",
"pretest:fixtures": "run-s pretest:fixtures:*",
"pretest:fixtures:non-angular-project": "cd tests/fixtures/non-angular-project && npm ci",
"pretest:fixtures:missing-angular-deps": "cd tests/fixtures/missing-angular-deps && npm ci",
"pretest:fixtures:application-builder": "cd tests/fixtures/application-builder && npm ci",
"pretest:fixtures:browser-builder": "cd tests/fixtures/browser-builder && npm ci",
"pretest:fixtures:prerender-false": "cd tests/fixtures/prerender-false && npm ci",
"pretest:fixtures:angular-17": "cd tests/fixtures/angular-17 && npm ci",
"pretest:fixtures:angular-19-common-engine": "cd tests/fixtures/angular-19-common-engine && npm ci",
"pretest:fixtures:angular-19-app-engine": "cd tests/fixtures/angular-19-app-engine && npm ci",
"pretest:fixtures:angular-19-app-engine-node-module-resolution": "cd tests/fixtures/angular-19-app-engine-node-module-resolution && npm ci",
"pretest:fixtures:angular-19-prerender-false": "cd tests/fixtures/angular-19-prerender-false && npm ci",
"pretest:fixtures:angular-20": "cd tests/fixtures/angular-20 && npm ci",
"pretest:fixtures:angular-20-zoneless": "cd tests/fixtures/angular-20-zoneless && npm ci",
"pretest:fixtures:angular-21": "cd tests/fixtures/angular-21 && npm ci",
"pretest:fixtures:nx-angular-19-common-engine": "cd tests/fixtures/nx-angular-19-common-engine && npm ci",
"pretest:fixtures:nx-angular-19-app-engine": "cd tests/fixtures/nx-angular-19-app-engine && npm ci",
"pretest": "run-s pretest:*",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netlify/angular-runtime.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/netlify/angular-runtime/issues"
},
"homepage": "https://github.com/netlify/angular-runtime#readme",
"keywords": [
"netlify-plugin",
"netlify",
"angular"
],
"engines": {
"node": "^22.22.0 || ^24.13.1 || >=26.0.0"
},
"devDependencies": {
"@opentelemetry/api": "~1.8.0",
"@netlify/eslint-config-node": "^7.0.1",
"@types/node": "^24.0.0",
"eslint-plugin-unicorn": "^49.0.0",
"husky": "^9.1.7",
"netlify-cli": "^26.0.1",
"@netlify/build": "^35.13.5",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.3"
},
"dependencies": {
"semver": "^7.8.0"
},
"jest": {
"testMatch": [
"**/test/**/*.js"
],
"verbose": true,
"testTimeout": 60000
},
"type": "module"
}