-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "fantasy",
"version": "1.1.0",
"description": "View current Fantasy Football standings",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged && node-minify -c babel-minify -i public/javascripts/update.js -o public/javascripts/update.min.js && git add public/javascripts/update.min.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cullenself/fantasy.git"
},
"author": "Cullen Self",
"license": "ISC",
"bugs": {
"url": "https://github.com/cullenself/fantasy/issues"
},
"homepage": "https://github.com/cullenself/fantasy#readme",
"dependencies": {
"Buffer": "0.0.0",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.7.3",
"express": "^4.16.3",
"helmet": "^3.13.0",
"moment": "^2.22.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"node-minify": "^3.4.0"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
]
},
"ignore": [
"public/javascripts/*.min.js"
]
}
}