forked from stylelint/stylelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
{
"name": "stylelint",
"version": "1.0.1",
"description": "Modern CSS linter",
"keywords": [
"css",
"csslint",
"lint",
"linter",
"stylelint"
],
"authors": [
"David Clark",
"Maxime Thirouin",
"Richard Hallows"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stylelint/stylelint.git"
},
"main": "dist/index.js",
"files": [
"dist",
"src",
"!**/__tests__",
"!**/testUtils"
],
"dependencies": {
"autoprefixer": "^6.0.0",
"balanced-match": "^0.2.0",
"execall": "^1.0.0",
"lodash": "^3.10.1",
"postcss": "^5.0.4",
"postcss-selector-parser": "^1.2.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-tape-runner": "^1.2.0",
"eslint": "^1.3.1",
"eslint-config-stylelint": "^0.1.0",
"sinon": "^1.16.1",
"stylelint-rule-tester": "^0.3.0",
"tape": "^4.2.0"
},
"scripts": {
"prepublish": "babel src --out-dir dist",
"lint": "eslint . --ignore-path .gitignore",
"tape": "babel-tape-runner \"src/**/__tests__/*.js\"",
"test": "npm run lint && npm run tape"
}
}