Skip to content

Commit e6db3f0

Browse files
Update dev dependencies and swap out isparta in favor of babel-istanbul
1 parent a00e809 commit e6db3f0

File tree

3 files changed

+12
-16
lines changed

3 files changed

+12
-16
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@ language: node_js
22
node_js:
33
- v7
44
- v6
5-
- v5
6-
- v4
75
after_script:
86
- 'npm run coveralls'

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
</a>
3333
</p>
3434

35-
**This plugin is now Vue 2.0 compatible!**
36-
3735
With this plugin, you can have have computed properties in Vue that are computed asynchronously.
3836

3937
Without using this plugin, you can't do this:

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"prebuild": "npm run check -s && npm run clean -s",
1717
"build": "babel --optional runtime src -d dist",
1818
"postbuild": "npm run test -s",
19-
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
19+
"coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover test/index.js",
2020
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
2121
"postcoveralls": "rimraf ./coverage",
2222
"prepublish": "npm run build -s",
@@ -47,26 +47,26 @@
4747
"vue": "~2"
4848
},
4949
"devDependencies": {
50-
"babel-cli": "^6.6.5",
51-
"babel-core": "^6.7.7",
50+
"babel-cli": "^6.23.0",
51+
"babel-core": "^6.23.1",
5252
"babel-eslint": "^7.0.0",
53+
"babel-istanbul": "^0.12.1",
5354
"babel-plugin-add-module-exports": "^0.2.1",
5455
"babel-plugin-rename-umd-globals": "^1.0.0",
55-
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
56+
"babel-plugin-transform-es2015-modules-umd": "^6.23.0",
5657
"babel-preset-es2015": "^6.6.0",
57-
"coveralls": "^2.11.9",
58-
"dependency-check": "^2.5.1",
58+
"coveralls": "^2.11.16",
59+
"dependency-check": "^2.8.0",
5960
"doctoc": "^1.0.0",
60-
"eslint": "^3.8.1",
61+
"eslint": "^3.15.0",
6162
"eslint-config-standard": "^6.0.0",
62-
"eslint-plugin-promise": "^3.3.0",
63+
"eslint-plugin-promise": "^3.4.2",
6364
"eslint-plugin-standard": "^2.0.0",
6465
"estraverse-fb": "^1.3.1",
65-
"isparta": "^4.0.0",
66-
"rimraf": "^2.5.2",
66+
"rimraf": "^2.6.0",
6767
"tap-spec": "^4.1.1",
6868
"tape": "^4.5.1",
69-
"vue": "^2.1.4",
70-
"watch": "^1.0.1"
69+
"vue": "^2.1.10",
70+
"watch": "^1.0.2"
7171
}
7272
}

0 commit comments

Comments
 (0)