We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 688552a commit c800063Copy full SHA for c800063
.gitignore
@@ -10,4 +10,5 @@ coverage.html
10
.idea
11
lib-cov
12
13
-node_modules
+node_modules
14
+.nyc_output
.travis.yml
@@ -1,7 +1,6 @@
1
language: node_js
2
-before_install:
3
-- npm install -g npm@latest
4
sudo: false
5
node_js:
6
- - "0.8"
7
- - "0.10"
+ - "6"
+ - "7"
+ - "4"
package.json
@@ -4,10 +4,13 @@
"description": "User validations for npm",
"main": "npm-user-validate.js",
"devDependencies": {
- "tap": "^1.2.0"
+ "standard": "^8.4.0",
8
+ "standard-version": "^3.0.0",
9
+ "tap": "^7.1.2"
},
"scripts": {
- "test": "tap test/*.js"
+ "pretest": "standard",
+ "test": "tap --100 test/*.js"
15
"repository": {
16
"type": "git",
0 commit comments