-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "@o3r/ngx-prefetch",
"version": "0.0.0",
"description": "Angular builder for prefetching resources before loading the application",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json && copyfiles src/schema.json ./dist --up 1 && copyfiles src/templates/* ./dist --up 1 && copyfiles src/schematics/ng-add/schema.json ./dist --up 1",
"test": "jest",
"lint": "eslint ./src",
"clean": "rimraf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmadeusITGroup/ngx-prefetch.git"
},
"keywords": [
"otter-module",
"angular",
"builder",
"prefetch",
"service worker"
],
"files": [
"dist/",
"builders.json",
"collection.json"
],
"schematics": "./collection.json",
"author": "Victor Scaiceanu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AmadeusITGroup/ngx-prefetch/issues"
},
"builders": "builders.json",
"homepage": "https://github.com/AmadeusITGroup/ngx-prefetch#readme",
"dependencies": {
"@angular-devkit/architect": "~0.1800.2",
"@angular-devkit/core": "~18.0.2",
"mustache": "^4.2.0",
"typescript": "~5.4.5",
"webpack": "^5.91.0"
},
"devDependencies": {
"@angular-devkit/schematics": "~18.0.2",
"@angular/cli": "~18.0.2",
"@schematics/angular": "~18.0.2",
"@types/jest": "^29.5.12",
"@types/mustache": "^4.2.5",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"rimraf": "^6.0.0",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"type-fest": "^4.19.0"
}
}