-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 907 Bytes
/
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
{
"name": "@sibipro/ask",
"version": "1.2.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=development jest",
"test:watch": "yarn test --watchAll",
"lint": "eslint *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sibipro/ask"
},
"dependencies": {
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@sibipro/eslint-config": "^1.1.0",
"@sibipro/eslint-config-jest": "^1.1.1",
"eslint": "^6.8.0",
"jest": "24.9.0",
"prettier": "^1.19.1"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage"
},
"prettier": {
"singleQuote": true,
"jsxBracketSameLine": true,
"printWidth": 120,
"trailingComma": "es5"
},
"keywords": [
"node-fetch",
"http",
"https",
"node",
"js",
"javascript",
"request",
"network",
"wrapper"
]
}