We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
npm install
npm test
1 parent f0b6eea commit 49c5f3dCopy full SHA for 49c5f3d
package.json
@@ -3,7 +3,12 @@
3
"version": "2.0.0",
4
"description": "A mostly reasonable approach to JavaScript.",
5
"scripts": {
6
- "test": "echo \"Error: no test specified\" && exit 1"
+ "preinstall": "npm run install:config && npm run install:config:base",
7
+ "install:config": "cd packages/eslint-config-airbnb && npm install",
8
+ "install:config:base": "cd packages/eslint-config-airbnb-base && npm install",
9
+ "test": "npm run --silent test:config && npm run --silent test:config:base",
10
+ "test:config": "cd packages/eslint-config-airbnb; npm test",
11
+ "test:config:base": "cd packages/eslint-config-airbnb-base; npm test"
12
},
13
"repository": {
14
"type": "git",
0 commit comments