We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ljharb
Learn more about funding links in repositories.
Report abuse
aud
posttest
1 parent fad6165 commit 3907aa5Copy full SHA for 3907aa5
.gitignore
@@ -5,3 +5,7 @@
5
# Only apps should have lockfiles
6
yarn.lock
7
package-lock.json
8
+
9
+# coverage data
10
+coverage/
11
+.nyc_output/
package.json
@@ -26,6 +26,7 @@
26
"through": "~2.3.8"
27
},
28
"devDependencies": {
29
+ "aud": "~1.1.5",
30
"concat-stream": "^1.6.2",
31
"eclint": "^2.8.1",
32
"ecstatic": "^4.1.4",
@@ -40,7 +41,8 @@
40
41
"lint": "eslint .",
42
"pretest": "npm run lint",
43
"test": "npm run tests-only",
- "tests-only": "tap test/*.js"
44
+ "posttest": "aud --production",
45
+ "tests-only": "nyc tap test/*.js"
46
47
"testling": {
48
"files": "test/browser/*.js",
0 commit comments