forked from velveteer/react-stub-context
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
49
50
51
52
53
54
{
"name": "react-stub-context",
"version": "0.8.0",
"description": "Stub context for a component, to be used for testing purposes.",
"main": "dist/index.js",
"keywords": [
"react",
"test",
"stub",
"context",
"mock"
],
"repository": {
"type": "git",
"url": "https://github.com/karlbright/react-stub-context.git"
},
"bugs": {
"url": "https://github.com/karlbright/react-stub-context/issues"
},
"scripts": {
"test": "jest",
"example": "webpack-dev-server --config webpack.example.js",
"prepublish": "mkdir -p dist && babel src/index.js > dist/index.js"
},
"author": "Karl Brightman <karl@karlbright.org>",
"contributors": [
{
"name": "oliviertassinari",
"url": "https://github.com/oliviertassinari"
},
{
"name": "d7h",
"url": "https://github.com/d7h"
}
],
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"compare-versions": "^2.0.1",
"create-react-class": "^15.5.2",
"jest-cli": "^19.0.2",
"prop-types": "^15.5.0",
"react-dom": "^15.5.0",
"webpack": "^1.13.0"
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.0"
}
}