-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.95 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
{
"name": "outline-express-rest-api",
"version": "1.0.1",
"description": "This package outlines express rest API endpoints & returned values to your terminal",
"main": "src/index.js",
"bin": {
"outline": "bin/index.js"
},
"scripts": {
"start": "node bin/index.js",
"test": "jest --testEnvironment=node --verbose --forceExit --watchAll --maxWorkers=1",
"test-coverage": " jest --collect-coverage --testEnvironment=node --forceExit --maxWorkers=1",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"lint": "lint-staged",
"lint-only": "eslint .",
"lint-all": "pretty-quick && eslint",
"prepare": "npx husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [
"Express",
"Rest API",
"Summarize",
"Outline"
],
"lint-staged": {
"*.js": [
"pretty-quick --staged",
"eslint --fix"
],
"*.+(json|css|md)": [
"pretty-quick --staged"
]
},
"author": "Serhat Ciftci",
"license": "SEE LICENCE IN LICENCE",
"repository": {
"type": "git",
"url": "https://github.com/serhatci/outline-express-rest-api.git"
},
"bugs": {
"url": "https://github.com/serhatci/outline-express-rest-api/issues"
},
"homepage": "https://github.com/serhatci/outline-express-rest-api#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.14.5",
"@prettier/plugin-pug": "^1.15.2",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0"
},
"dependencies": {
"express": "^4.17.1",
"jest": "^27.0.6"
}
}