forked from asd-xiv/fetch-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 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
{
"name": "@asd14/fetch-node",
"version": "0.0.1",
"description": "Thin wrapper over `node-fetch`",
"license": "MIT",
"homepage": "https://github.com/asd-xiv/fetch-node",
"repository": {
"type": "git",
"url": "git+https://github.com/asd-xiv/fetch-node.git"
},
"bugs": {
"url": "https://github.com/asd-xiv/fetch-node/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"main": "src/index.js",
"keywords": [
"fetch",
"node"
],
"engines": {
"node": ">=12"
},
"scripts": {
"----UTIL": "",
"setup": "rm -rf ./node_modules && npm i && npm audit fix",
"setup:ci": "npm ci && npm audit fix",
"update": "npm-check --update",
"----BUILD": "",
"prepublishOnly": "npm audit fix && npm test && 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",
"tdd": "nodemon --watch src --watch tests --exec \"npm test\"",
"coverage:ci": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"@asd14/m": "^3.1.1",
"form-data": "^3.0.0",
"node-fetch": "^2.6.1",
"rfc-3986": "^1.0.1"
},
"devDependencies": {
"@asd14/eslint-config": "^5.16.0",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.14.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",
"nodemon": "^2.0.6",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"qs": "^6.9.4",
"riteway": "^6.2.1",
"semantic-release": "^17.2.1",
"tap-nirvana": "^1.1.0"
}
}