-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1002 Bytes
/
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
{
"name": "postcss-modules-lint",
"version": "0.0.0",
"description": "PostCSS plugin to verify the scoping of selectors in CSS Modules",
"keywords": [
"css-modules",
"postcss",
"css",
"postcss-plugin"
],
"author": "Mark Dalgleish",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/css-modules/postcss-modules-lint.git"
},
"dependencies": {
"css-selector-tokenizer": "^0.4.0",
"postcss": "^4.1.5"
},
"devDependencies": {
"chokidar-cli": "^0.2.1",
"codecov.io": "^0.1.2",
"coveralls": "^2.11.2",
"eslint": "^0.22.1",
"istanbul": "^0.3.14",
"tape": "^4.0.0"
},
"scripts": {
"lint": "eslint index.js",
"pretest": "npm run lint",
"test": "tape test.js",
"autotest": "chokidar index.js test.js -c 'npm test'",
"precover": "npm run lint",
"cover": "istanbul cover test.js",
"travis": "npm run cover -- --report lcovonly",
"prepublish": "npm prune && npm test"
}
}