Skip to content
This repository was archived by the owner on Jun 9, 2019. It is now read-only.

Commit 8958a28

Browse files
committed
update dependencies
1 parent 04e01af commit 8958a28

File tree

4 files changed

+18
-17
lines changed

4 files changed

+18
-17
lines changed

.eslintrc

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"rules": {
77
// possible errors
88
"comma-dangle": [ 2, "always-multiline" ],
9-
"no-cond-assign": [ 2, "expect-parens" ],
10-
"no-console": 2,
9+
"no-cond-assign": 2,
10+
"no-console": 0,
1111
"no-extra-boolean-cast": 0,
1212

1313
// best practice
@@ -28,6 +28,8 @@
2828
"comma-spacing": 0,
2929
"key-spacing": 0,
3030
"no-underscore-dangle": 0,
31-
"quotes": [ 2, "double", "avoid-escape" ]
31+
"no-use-before-define": 0,
32+
"quotes": [ 2, "double", "avoid-escape" ],
33+
"space-infix-ops": [ 2, { "int32Hint": true } ]
3234
}
3335
}

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: node_js
22
sudo: false
33
node_js:
44
- "0.12"
5+
- "iojs"
56
env:
67
global:
78
- secure: "ZXHZg3GLqgjUyCmXD3Zy28M16+2EEkT7ab8gBywhU5TUcPElN75PtpOeOWt+1bOHM8ZsdBpb3BSi2wdOsD7p0BYz4XdZoBjufcV5YZp/Jz9Y2DBDP0o4OzaNp7etfSEKgP7qcPu4tDjKzcUEyMAeQBOUF3SY51XQGkkeudXWI60="

package.json

+12-13
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88
},
99
"dependencies": {},
1010
"devDependencies": {
11-
"babel": "^5.2.6",
12-
"babel-eslint": "^3.0.1",
13-
"babelify": "^6.0.2",
14-
"browserify": "^10.0.0",
11+
"babel": "^5.6.11",
12+
"babel-eslint": "^3.1.18",
13+
"babelify": "^6.1.2",
14+
"browserify": "^10.2.4",
1515
"coveralls": "^2.11.2",
16-
"eslint": "^0.20.0",
17-
"espower-babel": "^2.1.0",
16+
"eslint": "^0.23.0",
17+
"espower-babel": "^3.2.0",
1818
"isparta": "^3.0.3",
19-
"lodash": "^3.7.0",
20-
"mocha": "^2.2.4",
19+
"lodash": "^3.9.3",
20+
"mocha": "^2.2.5",
2121
"power-assert": "^0.11.0",
22-
"sinon": "^1.14.1"
22+
"sinon": "^1.15.3"
2323
},
2424
"files": [
2525
"package.json",
@@ -39,11 +39,10 @@
3939
},
4040
"scripts": {
4141
"build": "browserify src -t babelify --outfile build/web-audio-test-api.js",
42-
"cover": "babel-node $(npm bin)/isparta cover --report text --report html --report lcov $(npm bin)/_mocha",
42+
"cover": "babel-node $(npm bin)/isparta cover --report text --report html --report lcov _mocha",
4343
"lint": "eslint src test",
44-
"mocha": "mocha",
45-
"prepublish": "npm run lint && npm run mocha && npm run build",
46-
"test": "mocha --require espower-babel/guess",
44+
"prepublish": "npm run lint && npm run test && npm run build",
45+
"test": "mocha --compilers js:espower-babel/guess",
4746
"travis": "npm run lint && npm run cover"
4847
}
4948
}

test/mocha.opts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
--reporter spec
22
--recursive
3-
--compilers js:babel/register
43
--require test/bootstrap/bootstrap.js

0 commit comments

Comments
 (0)