Skip to content

Commit c800063

Browse files
Benjamin Coeiarna
Benjamin Coe
authored andcommittedApr 21, 2017
fix: update build environment
1 parent 688552a commit c800063

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed
 

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ coverage.html
1010
.idea
1111
lib-cov
1212

13-
node_modules
13+
node_modules
14+
.nyc_output

‎.travis.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: node_js
2-
before_install:
3-
- npm install -g npm@latest
42
sudo: false
53
node_js:
6-
- "0.8"
7-
- "0.10"
4+
- "6"
5+
- "7"
6+
- "4"

‎package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44
"description": "User validations for npm",
55
"main": "npm-user-validate.js",
66
"devDependencies": {
7-
"tap": "^1.2.0"
7+
"standard": "^8.4.0",
8+
"standard-version": "^3.0.0",
9+
"tap": "^7.1.2"
810
},
911
"scripts": {
10-
"test": "tap test/*.js"
12+
"pretest": "standard",
13+
"test": "tap --100 test/*.js"
1114
},
1215
"repository": {
1316
"type": "git",

0 commit comments

Comments
 (0)
Please sign in to comment.