-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
62
63
64
{
"name": "react-inspect-props",
"version": "0.2.0",
"description": "React properties inspector with the power of Redux DevTools",
"main": "lib/react-inspect-props.js",
"files": [
"*.md",
"LICENSE",
"lib",
"src"
],
"scripts": {
"build": "mkdir -p lib && babel ./src --out-dir ./lib",
"lint": "eslint src",
"prepublish": "rm -rf lib && npm run lint && npm run test && npm run build",
"test": "jest --verbose --no-cache"
},
"authors": [
"Lucas Constantino Silva"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.9.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"eslint": "^3.0.1",
"eslint-config-standard": "^5.3.5",
"eslint-config-standard-react": "^2.5.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^2.0.0",
"jest": "^19.0.2",
"react": "^16.0.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^16.0.0"
},
"peerDependencies": {
"react": "^15.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasconstantino/react-inspect-props.git"
},
"keywords": [
"react",
"data",
"fetch",
"request",
"client",
"api"
],
"bugs": {
"url": "https://github.com/lucasconstantino/react-inspect-props/issues"
},
"homepage": "https://github.com/lucasconstantino/react-inspect-props#readme",
"dependencies": {
"deepmerge": "^2.0.1"
}
}