-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
66 lines (66 loc) · 1.29 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
{
"name": "stylint",
"version": "2.0.0",
"description": "A linter for stylus",
"author": "Ross Patton",
"license": "GPL-3.0",
"keywords": [
"cli",
"css",
"hinter",
"lint",
"linter",
"styl",
"style",
"stylint",
"stylus",
"stylus-hint",
"stylus-lint"
],
"main": "index.js",
"files": [
"bin/",
"index.js",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/SimenB/stylint"
},
"bugs": {
"url": "https://github.com/SimenB/stylint/issues"
},
"bin": {
"stylint": "./bin/stylint"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "2.13.1",
"jsdoc": "3.6.2",
"mocha": "4.1.0",
"nyc": "14.1.1",
"sinon": "1.17.4",
"touch": "1.0.0"
},
"dependencies": {
"async": "1.5.2",
"chalk": "1.1.3",
"chokidar": "3.0.2",
"columnify": "1.5.4",
"glob": "7.0.4",
"lodash.defaults": "4.2.0",
"stampit": "1.2.0",
"strip-json-comments": "2.0.1",
"user-home": "2.0.0",
"yargs": "4.7.1"
},
"scripts": {
"cover": "nyc mocha --exit",
"docs": "jsdoc src/ --recurse --destination docs/",
"lint": "eslint .",
"precover": "npm run lint",
"pretest": "npm run lint",
"start": "node --harmony index.js",
"test": "mocha --exit"
}
}