forked from gaearon/react-side-effect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "react-side-effect",
"version": "1.0.2",
"description": "Create components whose prop changes map to a global side effect",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm test && npm run clean && npm run build",
"test": "mocha",
"test:watch": "mocha --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-side-effect.git"
},
"keywords": [
"react",
"component",
"side",
"effect"
],
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/react-side-effect/issues"
},
"homepage": "https://github.com/gaearon/react-side-effect",
"dependencies": {
"fbjs": "0.1.0-alpha.10"
},
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.2.0",
"isparta": "^3.0.4",
"jsdom": "^6.3.0",
"mocha": "^2.3.0",
"react": "^0.13.3",
"rimraf": "^2.4.3"
},
"files": [
"LICENSE",
"README.md",
"lib/"
]
}