Skip to content

Commit

Permalink
Version 3 (#2)
Browse files Browse the repository at this point in the history
- add Travis CI integration
- drop node 0.12.x support
  • Loading branch information
loostro authored Mar 19, 2017
1 parent 9748c24 commit bd59b36
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: node_js
node_js:
- '0.12'
- '6'
- '5'
- '4'
before_install:
- npm install -g typescript@2.0
- npm install -g typescript@2.0
script:
- npm test
- npm test
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "ramlunit",
"version": "2.0.0",
"version": "3.0.0",
"description": "Validate RAML and generate JUnit-like report.",
"author": "Piotr Gołębiewski <loostro@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=0.12.3"
"node": ">=4.0.0"
},
"main": "dist/src/ramlunit.js",
"bin": {
Expand All @@ -21,7 +21,6 @@
"test": "npm-run-all lint test:prepare test:execute",
"test:prepare": "npm run build",
"test:execute": "mocha dist/test --recursive",
"prepublish": "npm run test",
"debug": "npm run build && node dist/src/ramlunit.js --debug"
},
"dependencies": {
Expand All @@ -38,10 +37,12 @@
"@types/lodash": "^4.14.55",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.8",
"@types/xml": "^1.0.1",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"mocha-typescript": "^1.0.23",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"tslint": "^4.5.1",
"tslint-config-standard": "^4.0.0",
"typescript": "^2.2.1",
Expand Down

0 comments on commit bd59b36

Please sign in to comment.