-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.55 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.55 KB
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
67
68
69
{
"name": "stylelint-config-meetic",
"version": "0.1.0",
"description": "CSS Stylelint configuration at Meetic",
"main": "./lib/index.js",
"scripts": {
"ava": "ava",
"lint-js": "eslint src/**/*.js",
"prepublish": "babel src --out-dir lib",
"test": "npm run lint-js && npm run ava"
},
"repository": {
"type": "git",
"url": "git@github.com:Meetic/stylelint-config-meetic.git"
},
"contributors": [
{
"name": "Alexandre Barbier",
"url": "https://github.com/Alex-Barbier"
},
{
"name": "Antoine Jackson",
"url": "https://github.com/william26"
},
{
"name": "Benjamin Delamarre",
"url": "https://github.com/d34thwings"
},
{
"name": "Matthieu Kluj",
"url": "https://github.com/Sankluj"
},
{
"name": "Oleg Sklyanchuk",
"url": "https://github.com/olegskl"
}
],
"keywords": [
"stylelint-config",
"stylelint",
"stylelintconfig",
"style checker",
"style linter",
"code checker",
"code linter",
"code standards",
"code style",
"lint",
"css",
"meetic"
],
"author": "Meetic",
"license": "MIT",
"bugs": {
"url": "https://github.com/Meetic/stylelint-config-meetic/issues"
},
"devDependencies": {
"ava": "^0.9.1",
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-3": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-meetic": "^0.1.1",
"stylelint": "^3.2.2"
}
}