We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e64f4f9 commit 5f74a7cCopy full SHA for 5f74a7c
1 file changed
package.json
@@ -11,13 +11,14 @@
11
],
12
"scripts": {
13
"clean": "rm -rf dist",
14
- "lint": "eslint quote-selection.js test/ && flow check",
+ "lint": "eslint . && flow check",
15
"prebuild": "npm run clean && npm run lint && mkdir dist",
16
"build": "rollup -c && cp quote-selection.js.flow dist/quote-selection.esm.js.flow && cp quote-selection.js.flow dist/quote-selection.umd.js.flow",
17
"pretest": "npm run build",
18
"test": "karma start test/karma.config.js",
19
"prepublishOnly": "npm run build"
20
},
21
+ "dependencies": {},
22
"devDependencies": {
23
"@babel/core": "^7.3.4",
24
"@babel/preset-env": "^7.3.4",
@@ -34,5 +35,9 @@
34
35
"mocha": "^6.0.2",
36
"rollup": "^1.2.3",
37
"rollup-plugin-babel": "^4.3.2"
- }
38
+ },
39
+ "eslintIgnore": [
40
+ "dist/",
41
+ "prettier.config.js"
42
+ ]
43
}
0 commit comments