forked from asd-xiv/fetch-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.94 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@asd14/fetch-browser",
"version": "0.0.1",
"description": "Thin wrapper over `window.fetch`",
"license": "MIT",
"homepage": "https://github.com/asd-xiv/fetch-browser",
"repository": {
"type": "git",
"url": "git+https://github.com/asd-xiv/fetch-browser.git"
},
"bugs": {
"url": "https://github.com/asd-xiv/fetch-browser/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"main": "dist/index.js",
"keywords": [
"fetch",
"browser",
"wrapper"
],
"scripts": {
"----UTIL": "",
"setup": "rm -rf ./node_modules && npm i && npm audit fix",
"setup:ci": "npm ci && npm audit fix",
"update": "npm-check --update",
"----BUILD": "",
"build": "rm -rf dist/* && babel src --out-dir dist",
"prepare": "npm run build",
"prepublishOnly": "npm audit fix && npm run lint",
"----LINT": "",
"lint:md": "markdownlint *.md",
"lint:js": "eslint --ext .jsx,.js src",
"lint": "npm run lint:md && npm run lint:js",
"----TEST": "",
"test": "node tests/index.js"
},
"dependencies": {
"@asd14/m": "^3.2.0",
"rfc-3986": "^1.0.1"
},
"devDependencies": {
"@asd14/eslint-config": "^5.17.0",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^23.0.0",
"http-server": "^0.12.3",
"markdownlint-cli": "^0.24.0",
"npm-check": "^5.9.2",
"prettier": "^2.1.2",
"semantic-release": "^17.2.2",
"testcafe": "^1.9.4"
}
}