-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 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
{
"name": "eslint-config-jsbites",
"version": "2.1.2",
"description": "Byte-Sized JavaScript Coding Standards",
"main": "index.js",
"scripts": {
"test": "bin/test.sh",
"precommit": "bin/precommit.sh",
"lint": "bin/lint.sh"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsbites/coding-standards.git"
},
"keywords": [
"analyzers",
"byte-sized javascript",
"byte-sized",
"bytesized.tv",
"coding",
"demos",
"education",
"eslint",
"javascript",
"learning",
"podcast",
"rules",
"rulesets",
"screencast",
"standards",
"static analyzers",
"static",
"tutorials",
"validators",
"vidcast",
"videocast",
"videos"
],
"author": "Volkan Özçelik <me@volkan.io> (https://volkan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsbites/coding-standards/issues"
},
"homepage": "https://bytesized.tv/",
"devDependencies": {
"eslint": "^3.17.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2"
},
"dependencies": {}
}