-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "skin-deep",
"version": "1.2.0",
"description": "Testing helpers for use with React's shallowRender test utils.",
"main": "skin-deep.js",
"typings": "skin-deep.d.ts",
"scripts": {
"lint": "eslint . --max-warnings 0",
"coverage": "istanbul cover _mocha --",
"doc": "doctoc README.md",
"test": "mocha",
"test:all": "for i in $(grep 'REACT=' .travis.yml |sed 's/.*=//'); do REACT=$i sh ./install-relevant-react.sh && npm run test; done"
},
"repository": {
"type": "git",
"url": "https://github.com/glenjamin/skin-deep.git"
},
"keywords": [
"react",
"reactjs",
"test",
"testing",
"test utils",
"assertion helpers",
"shallow render",
"shallowRender"
],
"author": "Glen Mailer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/glenjamin/skin-deep/issues"
},
"homepage": "https://github.com/glenjamin/skin-deep",
"dependencies": {
"escape-string-regexp": "^1.0.5",
"is-subset": "^0.1.1",
"react-element-to-string": "^1.0.2",
"semver": "^5.3.0"
},
"devDependencies": {
"@glenjamin/eslint-config": "^2.1.0",
"chai": "^3.4.0",
"coveralls": "^2.11.2",
"eslint": "2.8.0",
"istanbul": "^0.4.0",
"mocha": "^2.2.5"
}
}