Skip to content

Commit 4e9581d

Browse files
author
Kent C. Dodds
committed
fix(package): metadata
1 parent 1aeb642 commit 4e9581d

File tree

2 files changed

+34
-17
lines changed

2 files changed

+34
-17
lines changed

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package.json
2+
node_modules
3+
dist
4+
coverage

package.json

Lines changed: 30 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
{
22
"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.",
65
"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",
719
"engines": {
8-
"node": "> 4",
9-
"npm": "> 3"
20+
"node": "> 6"
1021
},
1122
"scripts": {
1223
"add-contributor": "kcd-scripts contributors add",
@@ -16,21 +27,19 @@
1627
"test:update": "npm test -- --updateSnapshot --coverage",
1728
"validate": "kcd-scripts validate",
1829
"setup": "npm install && npm run validate -s",
19-
"precommit": "kcd-scripts precommit",
20-
"semantic-release": "semantic-release"
30+
"precommit": "kcd-scripts precommit"
2131
},
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+
],
2636
"dependencies": {
27-
"jest-matcher-utils": "^22.4.3"
37+
"jest-matcher-utils": "^22.4.3",
38+
"wait-for-expect": "^0.4.0"
2839
},
2940
"devDependencies": {
3041
"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"
3443
},
3544
"eslintConfig": {
3645
"extends": "./node_modules/kcd-scripts/eslint.js",
@@ -39,10 +48,14 @@
3948
"import/no-unassigned-import": "off"
4049
}
4150
},
42-
"eslintIgnore": ["node_modules", "coverage", "dist"],
51+
"eslintIgnore": [
52+
"node_modules",
53+
"coverage",
54+
"dist"
55+
],
4356
"repository": {
4457
"type": "git",
45-
"url": "https://github.com/kentcdodds/dom-testing-library.git"
58+
"url": "git+https://github.com/kentcdodds/dom-testing-library.git"
4659
},
4760
"bugs": {
4861
"url": "https://github.com/kentcdodds/dom-testing-library/issues"

0 commit comments

Comments
 (0)