-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "jest-glamor-react",
"version": "0.0.0-semantically-released",
"description": "Jest utilities for Glamor and React",
"main": "./index.js",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"setup": "npm install && npm run validate",
"validate": "kcd-scripts validate",
"precommit": "kcd-scripts precommit"
},
"files": ["dist", "index.js"],
"keywords": [],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"chalk": "^2.3.2",
"css": "^2.2.1",
"is-html": "^1.1.0",
"pretty-format": "^22.4.0"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"glamor": "^2.20.24",
"kcd-scripts": "0.36.1",
"react": "^16.2.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"snapshot-diff": "^0.3.0"
},
"peerDependencies": {
"glamor": "^2 || ^3"
},
"eslintConfig": {
"extends": ["./node_modules/kcd-scripts/eslint.js"],
"rules": {
"jsx-a11y/heading-has-content": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/jest-glamor-react.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/jest-glamor-react/issues"
},
"homepage": "https://github.com/kentcdodds/jest-glamor-react#readme"
}