|
1 |
| -{ |
2 |
| - "name": "vue-testing-library", |
3 |
| - "version": "0.11.0", |
4 |
| - "description": "Simple and complete Vue DOM testing utilities that encourage good testing practices.", |
5 |
| - "main": "npm/index.js", |
6 |
| - "scripts": { |
7 |
| - "lint": "eslint --ext .js,.vue .", |
8 |
| - "lint:fix": "eslint --ext .js,.vue . --fix", |
9 |
| - "test": "jest --coverage", |
10 |
| - "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", |
11 |
| - "version": "babel src --out-dir npm" |
12 |
| - }, |
13 |
| - "repository": { |
14 |
| - "type": "git", |
15 |
| - "url": "https://github.com/dfcook/vue-testing-library" |
16 |
| - }, |
17 |
| - "keywords": [ |
18 |
| - "vue.js", |
19 |
| - "vue.js testing", |
20 |
| - "vue", |
21 |
| - "vue testing", |
22 |
| - "vue.js 2", |
23 |
| - "vue.js 2 testing", |
24 |
| - "vue 2", |
25 |
| - "vue 2 testing" |
26 |
| - ], |
27 |
| - "author": "Daniel Cook", |
28 |
| - "license": "MIT", |
29 |
| - "dependencies": { |
30 |
| - "@vue/test-utils": "^1.0.0-beta.26", |
31 |
| - "dom-testing-library": "^3.14.0", |
32 |
| - "vue": "^2.5.17", |
33 |
| - "vue-template-compiler": "^2.5.17" |
34 |
| - }, |
35 |
| - "devDependencies": { |
36 |
| - "@babel/cli": "^7.2.0", |
37 |
| - "@babel/core": "^7.2.0", |
38 |
| - "@babel/plugin-proposal-object-rest-spread": "^7.2.0", |
39 |
| - "@babel/plugin-transform-runtime": "^7.2.0", |
40 |
| - "@babel/preset-env": "^7.2.0", |
41 |
| - "axios": "^0.18.0", |
42 |
| - "babel-core": "^7.0.0-bridge.0", |
43 |
| - "babel-eslint": "^10.0.1", |
44 |
| - "babel-jest": "^23.6.0", |
45 |
| - "coveralls": "^3.0.2", |
46 |
| - "eslint": "^5.9.0", |
47 |
| - "eslint-config-standard": "^12.0.0", |
48 |
| - "eslint-plugin-import": "^2.14.0", |
49 |
| - "eslint-plugin-node": "^8.0.0", |
50 |
| - "eslint-plugin-promise": "^4.0.1", |
51 |
| - "eslint-plugin-standard": "^4.0.0", |
52 |
| - "eslint-plugin-vue": "^5.0.0", |
53 |
| - "jest": "^23.6.0", |
54 |
| - "jest-in-case": "^1.0.2", |
55 |
| - "jest-serializer-vue": "^2.0.2", |
56 |
| - "vee-validate": "^2.1.4", |
57 |
| - "vue-jest": "^3.0.1", |
58 |
| - "vue-router": "^3.0.2", |
59 |
| - "vuex": "^3.0.1" |
60 |
| - }, |
61 |
| - "jest": { |
62 |
| - "moduleDirectories": [ |
63 |
| - "node_modules", |
64 |
| - "src" |
65 |
| - ], |
66 |
| - "moduleFileExtensions": [ |
67 |
| - "js", |
68 |
| - "vue" |
69 |
| - ], |
70 |
| - "coverageDirectory": "./coverage", |
71 |
| - "collectCoverageFrom": [ |
72 |
| - "**/src/**/*.js", |
73 |
| - "!**/tests/__tests__/**", |
74 |
| - "!**/node_modules/**" |
75 |
| - ], |
76 |
| - "testPathIgnorePatterns": [ |
77 |
| - "/node_modules/", |
78 |
| - "<rootDir>/npm/", |
79 |
| - "<rootDir>/tests/__tests__/components/" |
80 |
| - ], |
81 |
| - "transform": { |
82 |
| - "^.+\\.js$": "<rootDir>/node_modules/babel-jest", |
83 |
| - ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest" |
84 |
| - }, |
85 |
| - "snapshotSerializers": [ |
86 |
| - "<rootDir>/node_modules/jest-serializer-vue" |
87 |
| - ] |
88 |
| - } |
89 |
| -} |
| 1 | +{ |
| 2 | + "name": "vue-testing-library", |
| 3 | + "version": "0.11.0", |
| 4 | + "description": "Simple and complete Vue DOM testing utilities that encourage good testing practices.", |
| 5 | + "main": "npm/index.js", |
| 6 | + "scripts": { |
| 7 | + "lint": "eslint --ext .js,.vue .", |
| 8 | + "lint:fix": "eslint --ext .js,.vue . --fix", |
| 9 | + "test": "jest --coverage", |
| 10 | + "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", |
| 11 | + "version": "babel src --out-dir npm" |
| 12 | + }, |
| 13 | + "repository": { |
| 14 | + "type": "git", |
| 15 | + "url": "https://github.com/dfcook/vue-testing-library" |
| 16 | + }, |
| 17 | + "keywords": [ |
| 18 | + "vue.js", |
| 19 | + "vue.js testing", |
| 20 | + "vue", |
| 21 | + "vue testing", |
| 22 | + "vue.js 2", |
| 23 | + "vue.js 2 testing", |
| 24 | + "vue 2", |
| 25 | + "vue 2 testing" |
| 26 | + ], |
| 27 | + "author": "Daniel Cook", |
| 28 | + "license": "MIT", |
| 29 | + "dependencies": { |
| 30 | + "@vue/test-utils": "^1.0.0-beta.26", |
| 31 | + "dom-testing-library": "^3.14.0", |
| 32 | + "vue": "^2.5.17", |
| 33 | + "vue-template-compiler": "^2.5.17" |
| 34 | + }, |
| 35 | + "devDependencies": { |
| 36 | + "@babel/cli": "^7.2.0", |
| 37 | + "@babel/core": "^7.2.0", |
| 38 | + "@babel/plugin-proposal-object-rest-spread": "^7.2.0", |
| 39 | + "@babel/plugin-transform-runtime": "^7.2.0", |
| 40 | + "@babel/preset-env": "^7.2.0", |
| 41 | + "axios": "^0.18.0", |
| 42 | + "babel-core": "^7.0.0-bridge.0", |
| 43 | + "babel-eslint": "^10.0.1", |
| 44 | + "babel-jest": "^23.6.0", |
| 45 | + "coveralls": "^3.0.2", |
| 46 | + "eslint": "^5.9.0", |
| 47 | + "eslint-config-standard": "^12.0.0", |
| 48 | + "eslint-plugin-import": "^2.14.0", |
| 49 | + "eslint-plugin-node": "^8.0.0", |
| 50 | + "eslint-plugin-promise": "^4.0.1", |
| 51 | + "eslint-plugin-standard": "^4.0.0", |
| 52 | + "eslint-plugin-vue": "^5.0.0", |
| 53 | + "jest": "^23.6.0", |
| 54 | + "jest-dom": "^3.0.0", |
| 55 | + "jest-in-case": "^1.0.2", |
| 56 | + "jest-serializer-vue": "^2.0.2", |
| 57 | + "vee-validate": "^2.1.4", |
| 58 | + "vue-jest": "^3.0.1", |
| 59 | + "vue-router": "^3.0.2", |
| 60 | + "vuex": "^3.0.1" |
| 61 | + }, |
| 62 | + "jest": { |
| 63 | + "moduleDirectories": [ |
| 64 | + "node_modules", |
| 65 | + "src" |
| 66 | + ], |
| 67 | + "moduleFileExtensions": [ |
| 68 | + "js", |
| 69 | + "vue" |
| 70 | + ], |
| 71 | + "coverageDirectory": "./coverage", |
| 72 | + "collectCoverageFrom": [ |
| 73 | + "**/src/**/*.js", |
| 74 | + "!**/tests/__tests__/**", |
| 75 | + "!**/node_modules/**" |
| 76 | + ], |
| 77 | + "testPathIgnorePatterns": [ |
| 78 | + "/node_modules/", |
| 79 | + "<rootDir>/npm/", |
| 80 | + "<rootDir>/tests/__tests__/components/" |
| 81 | + ], |
| 82 | + "transform": { |
| 83 | + "^.+\\.js$": "<rootDir>/node_modules/babel-jest", |
| 84 | + ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest" |
| 85 | + }, |
| 86 | + "snapshotSerializers": [ |
| 87 | + "<rootDir>/node_modules/jest-serializer-vue" |
| 88 | + ] |
| 89 | + } |
| 90 | +} |
0 commit comments