forked from AmadeusITGroup/ngx-prefetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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": "14.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",
"test": "jest",
"lint": "eslint ./src",
"clean": "rimraf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmadeusITGroup/ngx-prefetch.git"
},
"keywords": [
"angular",
"builder",
"prefetch",
"service worker"
],
"files": [
"dist/",
"builders.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.1400.1",
"@angular-devkit/core": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"comment-json": "^4.1.0",
"eslint": "^8.0.0",
"mustache": "^4.2.0",
"path": "^0.12.7",
"typescript": "~4.7.0",
"webpack": "^5.50.0"
},
"devDependencies": {
"@types/jest": "^28.0.0",
"@types/mustache": "^4.1.2",
"@types/node": "^16.0.0",
"copyfiles": "^2.4.1",
"jest": "^28.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.0"
},
"resolutions": {
"minimist": "1.2.6",
"ansi-regex": "5.0.1",
"tmpl": "1.0.5",
"tar": "6.1.11"
}
}