|
1 | 1 | {
|
2 | 2 | "name": "postcss-modules-local-by-default",
|
3 |
| - "version": "1.2.0", |
| 3 | + "version": "2.0.0", |
4 | 4 | "description": "A CSS Modules transform to make local scope the default",
|
| 5 | + "main": "src/index.js", |
| 6 | + "engines": { |
| 7 | + "node": ">= 6" |
| 8 | + }, |
5 | 9 | "keywords": [
|
6 | 10 | "css-modules",
|
7 | 11 | "postcss",
|
|
16 | 20 | },
|
17 | 21 | "dependencies": {
|
18 | 22 | "css-selector-tokenizer": "^0.7.0",
|
19 |
| - "postcss": "^6.0.1" |
| 23 | + "postcss": "^7.0.6" |
20 | 24 | },
|
21 | 25 | "devDependencies": {
|
22 | 26 | "chokidar-cli": "^1.0.1",
|
23 | 27 | "codecov.io": "^0.1.2",
|
24 |
| - "coveralls": "^2.11.2", |
25 |
| - "eslint": "^3.19.0", |
| 28 | + "coveralls": "^3.0.2", |
| 29 | + "eslint": "^5.9.0", |
26 | 30 | "istanbul": "^0.4.5",
|
27 | 31 | "tape": "^4.0.0"
|
28 | 32 | },
|
29 | 33 | "scripts": {
|
30 | 34 | "lint": "eslint index.js test.js",
|
31 |
| - "pretest": "npm run lint", |
| 35 | + "pretest": "yarn lint", |
32 | 36 | "test": "tape test.js",
|
33 |
| - "autotest": "chokidar index.js test.js -c 'npm test'", |
34 |
| - "precover": "npm run lint", |
| 37 | + "autotest": "chokidar index.js test.js -c 'yarn test'", |
| 38 | + "precover": "yarn lint", |
35 | 39 | "cover": "istanbul cover test.js",
|
36 |
| - "travis": "npm run cover -- --report lcovonly", |
37 |
| - "prepublish": "npm prune && npm test", |
38 |
| - "publish-patch": "npm prune && npm test && npm version patch && git push && git push --tags && npm publish" |
| 40 | + "travis": "yarn lint && yarn cover -- --report lcovonly", |
| 41 | + "prepublish": "yarn test" |
39 | 42 | },
|
40 | 43 | "files": [
|
41 | 44 | "index.js"
|
|
0 commit comments