forked from meuschke/relay-testing-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "@gigantum/relay-testing-utils",
"version": "0.1.0",
"description": "Easy to use relay mock and unit testing tool (works with Jest & Enzyme)",
"main": "build/index.js",
"scripts": {
"test": "jest",
"build": "babel -d build/ lib/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gigantum/relay-testing-utils"
},
"keywords": [
"relay",
"testing",
"react",
"mocking"
],
"author": "Toni Meuschke",
"license": "MIT",
"bugs": {
"url": "https://github.com/gigantum/relay-testing-utils"
},
"homepage": "https://github.com/gigantum/relay-testing-utils",
"dependencies": {
"react": "^15.3.1"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-relay-plugin": "^0.11.0",
"babel-cli": "^6.22.2",
"babel-jest": "^18.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.5.0",
"enzyme": "^2.7.1",
"jest": "^18.1.0",
"react-relay": "^0.10.0"
}
}