-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
72 lines (72 loc) · 1.68 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
67
68
69
70
71
72
{
"name": "convert-to-stylelint",
"version": "0.0.0",
"description": "Automatically convert linter configurations to a stylelint configuration.",
"main": "lib/index.js",
"engines": {
"node": ">=4"
},
"directories": {
"doc": "docs",
"lib": "src"
},
"scripts": {
"watch": "jest --watch",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail",
"lint": "run-p lint:*",
"pretest": "npm run lint",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"prebuild": "rimraf lib",
"build": "babel src --out-dir lib --ignore *.test.js",
"prepublish": "npm run build"
},
"babel": {
"presets": [
["env", {
"targets": {
"node": "current"
}
}]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilippBaschke/convert-to-stylelint.git"
},
"keywords": [
"css",
"csslint",
"lint",
"linter",
"configuration",
"stylelint",
"scss-lint"
],
"author": "Philipp Baschke",
"license": "MIT",
"bugs": {
"url": "https://github.com/PhilippBaschke/convert-to-stylelint/issues"
},
"homepage": "https://github.com/PhilippBaschke/convert-to-stylelint#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-jest": "^18.0.0",
"babel-preset-env": "^1.1.4",
"coveralls": "^2.11.9",
"eslint": "^3.12.2",
"jest": "^18.0.0",
"npm-run-all": "^3.1.2",
"remark-cli": "^2.1.0",
"remark-lint": "^5.4.0",
"rimraf": "^2.5.2"
},
"jest": {
"collectCoverageFrom": "src/**/*.js",
"coveragePathIgnorePatterns": [
"/node_modules",
"/lib/"
]
}
}