Skip to content

Commit

Permalink
Merge pull request #22 from steveukx/pr/15
Browse files Browse the repository at this point in the history
Pr/15
  • Loading branch information
steveukx authored Jun 17, 2019
2 parents 237409b + 0fa7216 commit 8cfdb3a
Show file tree
Hide file tree
Showing 19 changed files with 1,675 additions and 860 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 3
trim_trailing_whitespace = true

[*.json]
indent_size = 2

[*.md]
trim_trailing_whitespace = false
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.iml
node_modules
.idea/

node_modules/
3 changes: 0 additions & 3 deletions .npmignore

This file was deleted.

15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js

node_js:
- "8"

install:
- yarn install

script:
- yarn test

branches:
only:
- master

164 changes: 0 additions & 164 deletions package-lock.json

This file was deleted.

11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
"mkdirp": "~0.5.1"
},
"devDependencies": {
"unit-test": "*"
"@kwsites/file-exists": "^1.0.0",
"expect.js": "^0.3.1",
"mocha": "^6.1.4",
"rimraf": "^2.6.3",
"sinon": "^7.3.2"
},
"keywords": [
"properties",
Expand All @@ -36,7 +40,10 @@
"src/**/*.js"
],
"scripts": {
"test": "node test/runner.js"
"test": "mocha ./test/*.spec.js"
},
"engines": {
"node": ">=6"
},
"license": "MIT"
}
Loading

0 comments on commit 8cfdb3a

Please sign in to comment.