-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
{
"name": "abhishekwebcode_find_server",
"version": "1.0.0",
"description": "A module to find the server with lowest priority",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "mocha ./tests/index.js"
},
"keywords": [
"findServer","abhishekwebcode"
],
"author": "Abhishek Mathur <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/axios": "latest",
"@types/chai": "^4.2.10",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/q": "^1.5.2",
"chai": "^4.2.0",
"detect-port": "^1.3.0",
"eslint": "latest",
"mocha": "^7.1.0",
"mock-http-server": "^1.4.1",
"prettier": "latest",
"chalk": "latest"
},
"dependencies": {
"axios": "^0.19.2",
"lodash": "latest",
"q": "^1.5.1"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"printWidth": 80,
"proseWrap": "preserve",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false,
"overrides": [
{
"files": "*.json",
"options": {
"printWidth": 200
}
}
]
}
}