This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.71 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"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": "",
"prepare": "git config --local core.hooksPath .githook",
"presetup": "rm -rf ./node_modules",
"setup": "npm ci --also=dev",
"update": "npm-check --update",
"postupdate": "npm audit fix",
"----BUILD": "",
"prebuild": "rm -rf ./dist",
"build": "babel src --out-dir dist",
"----LINT": "",
"lint:js": "eslint --quiet src",
"lint:js-staged": "eslint --quiet",
"lint:md": "markdownlint '*.md'",
"lint:md-staged": "markdownlint",
"lint": "npm run lint:js && npm run lint:md",
"----TEST": "",
"build:test": "webpack --config test.app/webpack.config.js --mode production",
"start:test": "webpack serve --config test.app/webpack.config.js --mode development",
"pretest": "npm run build && npm run build:test",
"test": "node test.scenarios/index.js"
},
"dependencies": {
"@asd14/m": "^6.1.0",
"@babel/runtime-corejs3": "^7.14.0",
"rfc-3986": "^1.0.1"
},
"devDependencies": {
"@asd14/eslint-config": "^5.33.0",
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@babel/register": "^7.13.16",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^33.1.1",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unicorn": "^32.0.0",
"html-webpack-plugin": "^5.3.1",
"http-server": "^0.12.3",
"lint-staged": "^11.0.0",
"markdownlint-cli": "^0.27.1",
"npm-check": "^5.9.2",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"testcafe": "^1.14.0",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}