|
1 | 1 | {
|
2 | 2 | "name": "dom-testing-library",
|
3 |
| - "version": "0.0.0-development", |
4 |
| - "description": |
5 |
| - "Simple and complete DOM testing utilities that encourage good testing practices.", |
| 3 | + "version": "0.0.0-semantically-released", |
| 4 | + "description": "Simple and complete DOM testing utilities that encourage good testing practices.", |
6 | 5 | "main": "dist/index.js",
|
| 6 | + "keywords": [ |
| 7 | + "testing", |
| 8 | + "ui", |
| 9 | + "dom", |
| 10 | + "jsdom", |
| 11 | + "unit", |
| 12 | + "integration", |
| 13 | + "functional", |
| 14 | + "end-to-end", |
| 15 | + "e2e" |
| 16 | + ], |
| 17 | + "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)", |
| 18 | + "license": "MIT", |
7 | 19 | "engines": {
|
8 |
| - "node": "> 4", |
9 |
| - "npm": "> 3" |
| 20 | + "node": "> 6" |
10 | 21 | },
|
11 | 22 | "scripts": {
|
12 | 23 | "add-contributor": "kcd-scripts contributors add",
|
|
16 | 27 | "test:update": "npm test -- --updateSnapshot --coverage",
|
17 | 28 | "validate": "kcd-scripts validate",
|
18 | 29 | "setup": "npm install && npm run validate -s",
|
19 |
| - "precommit": "kcd-scripts precommit", |
20 |
| - "semantic-release": "semantic-release" |
| 30 | + "precommit": "kcd-scripts precommit" |
21 | 31 | },
|
22 |
| - "files": ["dist", "extend-expect.js"], |
23 |
| - "keywords": [], |
24 |
| - "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)", |
25 |
| - "license": "MIT", |
| 32 | + "files": [ |
| 33 | + "dist", |
| 34 | + "extend-expect.js" |
| 35 | + ], |
26 | 36 | "dependencies": {
|
27 |
| - "jest-matcher-utils": "^22.4.3" |
| 37 | + "jest-matcher-utils": "^22.4.3", |
| 38 | + "wait-for-expect": "^0.4.0" |
28 | 39 | },
|
29 | 40 | "devDependencies": {
|
30 | 41 | "jest-in-case": "^1.0.2",
|
31 |
| - "kcd-scripts": "^0.36.1", |
32 |
| - "wait-for-expect": "^0.4.0", |
33 |
| - "semantic-release": "^15.1.5" |
| 42 | + "kcd-scripts": "^0.36.1" |
34 | 43 | },
|
35 | 44 | "eslintConfig": {
|
36 | 45 | "extends": "./node_modules/kcd-scripts/eslint.js",
|
|
39 | 48 | "import/no-unassigned-import": "off"
|
40 | 49 | }
|
41 | 50 | },
|
42 |
| - "eslintIgnore": ["node_modules", "coverage", "dist"], |
| 51 | + "eslintIgnore": [ |
| 52 | + "node_modules", |
| 53 | + "coverage", |
| 54 | + "dist" |
| 55 | + ], |
43 | 56 | "repository": {
|
44 | 57 | "type": "git",
|
45 |
| - "url": "https://github.com/kentcdodds/dom-testing-library.git" |
| 58 | + "url": "git+https://github.com/kentcdodds/dom-testing-library.git" |
46 | 59 | },
|
47 | 60 | "bugs": {
|
48 | 61 | "url": "https://github.com/kentcdodds/dom-testing-library/issues"
|
|
0 commit comments