-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1019 Bytes
/
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": "open-source",
"version": "0.1.0",
"description": "Base configuration for a Scout JavaScript project",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint *.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Scout-NU/open-source.git"
},
"keywords": [
"javascript",
"base",
"starter",
"prettier",
"eslint",
"temaplate"
],
"author": {
"name": "Adam Markon",
"email": "[email protected]",
"twitter": "@amarkon88"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Scout-NU/open-source/issues"
},
"homepage": "https://github.com/Scout-NU/open-source#readme",
"dependencies": {
"@nuscout/eslint-config": "^0.2.0",
"@nuscout/prettier-config": "^0.1.1",
"eslint": "^4.16.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
},
"lint-staged": {
"*.{js,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}