-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "vuex-snapshot",
"version": "0.1.5",
"description": "Take snapshots of your store and actions for Jest snapshot testing",
"main": "vuex-snapshot.js",
"module": "vuex-snapshot-es6.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "./node_modules/.bin/jest",
"codecov": "./node_modules/.bin/codecov",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VsevolodTrofimov/vuex-snapshot.git"
},
"keywords": [
"Vuex",
"Vue",
"Jest",
"testing",
"snapshot testing"
],
"author": "Vsevolod Trofimov",
"license": "MIT",
"bugs": {
"url": "https://github.com/VsevolodTrofimov/vuex-snapshot/issues"
},
"homepage": "https://github.com/VsevolodTrofimov/vuex-snapshot#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.0",
"jest": "^22.1.4",
"rollup": "^0.55.1"
},
"dependencies": {
"babel-jest": "^22.1.0"
}
}