-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "react-throttle-render",
"version": "1.2.1",
"description": "Throttle the number of rendering times.",
"main": "./lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"test": "mocha --compilers js:babel-register --recursive -r jsdom-global/register ./test/*.spec.js",
"test:watch": "npm test -- --watch",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryo33/react-throttle-render.git"
},
"keywords": [
"react",
"throttle",
"render",
"props"
],
"author": "Ryo33",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0"
},
"dependencies": {
"hoist-non-react-statics": "^1.2.0",
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"jsdom": "^9.4.2",
"jsdom-global": "^2.1.0",
"mocha": "^3.0.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.1",
"sinon": "^1.17.5"
},
"bugs": {
"url": "https://github.com/ryo33/react-throttle-render/issues"
},
"homepage": "https://github.com/ryo33/react-throttle-render#readme"
}