forked from SimenB/stylint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.24 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
{
"name": "stylint",
"version": "1.0.11",
"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/rossPatton/stylint"
},
"bugs": {
"url": "https://github.com/rossPatton/stylint/issues"
},
"bin": {
"stylint": "./bin/stylint"
},
"preferGlobal": true,
"devDependencies": {
"babel-eslint": "3.1.17",
"chai": "1.10.0",
"eslint": "0.23.0",
"istanbul": "0.3.5",
"mocha": "2.0.1",
"sinon": "1.12.2",
"touch": "0.0.3"
},
"dependencies": {
"async": "0.9.0",
"chokidar": "1.0.1",
"glob": "4.3.1",
"lodash.defaults": "3.1.2",
"path-is-absolute": "1.0.0",
"stampit": "1.1.0",
"strip-json-comments": "1.0.2",
"yargs": "3.15.0"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"start": "node --harmony index.js",
"test": "istanbul cover node_modules/.bin/_mocha -- -u exports -R spec test/test.js"
}
}