forked from gaearon/react-deep-force-update
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.23 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": "react-deep-force-update",
"version": "2.0.1",
"description": "Force-updates React component tree recursively",
"main": "src/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "mocha --compilers js:babel/register --recursive --require ./test/setup.js",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-deep-force-update.git"
},
"keywords": [
"react"
],
"author": "Dan Abramov <dan.abramov@me.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/react-deep-force-update/issues"
},
"homepage": "https://github.com/gaearon/react-deep-force-update",
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^3.1.15",
"eslint": "^0.23",
"eslint-config-airbnb": "0.0.6",
"eslint-plugin-react": "^2.3.0",
"expect": "^1.6.0",
"jsdom": "^5.6.1",
"mocha": "^2.2.5",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"rimraf": "^2.3.4"
}
}