-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.25 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.25 KB
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
{
"name": "anyread-api.js",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"lint": "eslint . --ext .js",
"test": "jest",
"start": "nodemon server.js"
},
"author": "Malu Decks",
"license": "ISC",
"eslintConfig": {
"root": true,
"extends": "airbnb-base",
"env": {
"es6": true,
"browser": true
},
"rules": {
"brace-style": [
"error",
"stroustrup"
],
"comma-dangle": [
"error",
"never"
],
"no-unused-vars": [
"warn"
],
"no-var": [
"off"
],
"one-var": [
"off"
],
"no-console": "off"
}
},
"engines": {
"node": ">= 11.10.1"
},
"dependencies": {
"express": "^4.17.1",
"install": "^0.13.0",
"jsdom": "^16.4.0",
"nodemon": "^2.0.6",
"npm": "^6.14.9",
"readability": "https://github.com/mozilla/readability",
"request-promise-native": "^1.0.9",
"whatwg-encoding": "^1.0.5",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"spy": "^1.0.0",
"superagent": "^6.1.0",
"supertest": "^6.0.1"
}
}