-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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-watcher",
"version": "0.0.1",
"description": "ReactJS helper for subscribing to prop changes",
"author": "Sebastian Borrazas <[email protected]> http://sborrazas.com",
"main": "dist/index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/sborrazas/react-watcher/issues"
},
"homepage": "https://github.com/sborrazas/react-watcher",
"keywords": [
"react",
"reactjs",
"props",
"watch",
"utils"
],
"repository": {
"type": "git",
"url": "https://github.com/sborrazas/react-watcher.git"
},
"files": [
"dist"
],
"scripts": {
"prepublish": "make clean build"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jsdom": "^9.11.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2"
},
"dependencies": {
"invariant": "^2.2.2",
"lodash": "^4.17.4",
"lodash-es": "^4.2.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"test/*.js",
"!test/setupDom.js"
]
}
}