-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "predictive-prefetch",
"version": "0.1.0",
"description": "A JavaScript client-side predictive prefetch solution for webpack and SPAs.",
"main": "./src/index.js",
"keywords": [
"prediction",
"predictive",
"SPA",
"prefetch",
"preload",
"activeLeZi",
"UI",
"AI",
"webpack"
],
"homepage": "https://github.com/mudafar/predictive-prefetch",
"scripts": {
"test": "jest",
"build": "rollup --config"
},
"repository": {
"type": "git",
"url": "https://github.com/mudafar/predictive-prefetch"
},
"private": false,
"author": "Mudafar E.",
"license": "MIT",
"dependencies": {
"alz-predictor": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-jest": "^26.6.3",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"rollup": "^2.41.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-generate-package-json": "^3.2.0"
},
"jest": {
"setupFiles": [],
"roots": [
"./test"
],
"testRegex": "\\.test\\.js$",
"verbose": true
}
}