-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "fetchery",
"version": "0.2.0",
"description": "A a little wrapper around Javascript Fetch API written in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"lint": "eslint src/** test/** --ext ts",
"test": "ts-node test/server.ts",
"coverage": "nyc report --reporter=text-summary --reporter=html",
"build": "rm -rf dist && tsc"
},
"author": "aileo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:aileo/fetchery.git"
},
"bugs": {
"url": "https://github.com/aileo/fetchery/issues"
},
"homepage": "https://github.com/aileo/fetchery/blob/master/README.md",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.10",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.0",
"@types/multer": "^1.4.5",
"@types/parcel-bundler": "^1.12.3",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"mocha": "^8.2.1",
"mocha-headless-chrome": "^3.1.0",
"multer": "^1.4.2",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-asset-copier": "^1.1.0",
"prettier": "^2.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"browserslist": [
"last 3 Chrome versions"
]
}