-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "fwap",
"version": "1.0.0",
"description": "wrapper code for browser fetch (fetch wrapper..fwap)",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "jest --watch",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"lintfix": "eslint . --ext .ts --fix"
},
"author": "denisos",
"keywords": ["fetch", "fetch wrapper"],
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/denisos/fwap.git"
},
"homepage": "https://github.com/denisos/fwap#readme",
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}