-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1006 Bytes
/
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
{
"name": "yab-fetch-cache",
"version": "0.0.1-alpha.5",
"description": "",
"homepage": "https://github.com/mjolnirjs/yab/tree/master/packages/yab-fetch-cache#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mjolnirjs/yab.git"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:es && npm run build:lib && npm run build:dist",
"build:es": "tsc -p ./tsconfig.es.json",
"build:lib": "tsc -p ./tsconfig.lib.json",
"build:dist": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"lint": "eslint src --ext ts",
"test": "jest --no--cache"
},
"main": "./dist/lib/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"devDependencies": {
"fake-indexeddb": "^3.0.0",
"whatwg-fetch": "^3.0.0",
"yab-fetch": "^0.0.1-alpha.5"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/mjolnirjs/yab/issues"
}
}