-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "homenaje-a-moviefire",
"version": "1.0.0",
"description": "Homenaje a MovieFire",
"main": "app.js",
"scripts": {
"lint": "eslint \"js/*.js\"",
"format": "prettier --write \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/estreamercoders/Homenaje-a-movieFire.git"
},
"author": "estreamercoders",
"license": "ISC",
"bugs": {
"url": "https://github.com/estreamercoders/Homenaje-a-movieFire/issues"
},
"homepage": "https://github.com/estreamercoders/Homenaje-a-movieFire#readme",
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"eslint --fix",
"git add"
]
}
}