Skip to content

Commit

Permalink
feat(meta): bringing project stuff up to date
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node@<4 is no longer supported
  • Loading branch information
zkat committed Apr 16, 2017
1 parent 28c4ca9 commit 61791da
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: node_js
sudo: false
node_js:
- "7"
- "6"
- "4.2"
- "0.12"
- "0.10"
- "4"
22 changes: 22 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
environment:
matrix:
- nodejs_version: "7"
- nodejs_version: "6"
- nodejs_version: "4"

platform:
- x64

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm config set spin false
- npm i -g npm@latest
- npm install

test_script:
- npm test

matrix:
fast_finish: true

build: off
19 changes: 13 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@
"index.js"
],
"scripts": {
"preversion": "npm t",
"postversion": "npm publish && git push --follow-tags",
"prerelease": "npm t",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "standard",
"test": "nyc -- mocha --reporter spec"
"release": "standard-version -s",
"test": "nyc -- mocha --reporter spec",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"repository": {
"type": "git",
Expand All @@ -26,6 +29,8 @@
"protocols",
"multimethod",
"clojure",
"haskell",
"rust",
"generic",
"functions",
"clos",
Expand All @@ -44,8 +49,10 @@
"genfun": "^3.2.1"
},
"devDependencies": {
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"standard": "^8.0.0"
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"standard": "^10.0.2",
"weallbehave": "^1.0.3",
"weallcontribute": "^1.0.8"
}
}

0 comments on commit 61791da

Please sign in to comment.