This repository was archived by the owner on Nov 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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": "react-combo-test",
"version": "0.4.1",
"description": "Check combinations of prop and context values for stateless components",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git@github.com:ratehub/react-combo-test.git"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"coverage": "istanbul cover tape -- -r ./src/__tests__/__patchForTests '**/__tests__/test-*.js' | tap-spec",
"lint": "eslint **/*.js",
"test": "tape -r ./src/__tests__/__patchForTests '**/__tests__/test-*.js' && npm run test:runners",
"test:runners": "jest --roots other-runners/jest --silent",
"watch:test": "nodemon -w '**/*.js' -x 'npm t | tap-spec'"
},
"author": "uniphil",
"contributors": [
"uniphil",
"owenscott"
],
"license": "MIT",
"dependencies": {
"check-prop-types": "^1.1.0",
"invariant": "^2.2.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1"
},
"devDependencies": {
"enzyme": "^2.9.1",
"eslint": "^4.1.1",
"istanbul": "^0.4.5",
"jest": "^20.0.4",
"mobx": "^3.2.1",
"mobx-react": "^4.2.2",
"nodemon": "^1.11.0",
"prop-types": "^15.5.10",
"tap-spec": "^4.1.1",
"tape": "^4.7.0"
},
"peerDependencies": {
"prop-types": "^15.5.10"
}
}