-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "@verivox/tiny-prefetch",
"version": "2.0.2",
"description": "Can be used to make crucial GET requests while an application is still loading",
"main": "dist/tiny_prefetch.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint -p tsconfig.json",
"test": "mocha -r 'ts-node/register' test/*.spec.ts",
"build": "webpack"
},
"keywords": [
"fetch",
"parallel",
"prefetch",
"get",
"PWA",
"performance",
"web worker",
"angular"
],
"author": "Kim Almasan <[email protected]> (https://kumbier.it)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@types/sinon": "^9.0.4",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"mocha-junit-reporter": "^2.0.0",
"sinon": "^9.0.2",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {}
}