This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.62 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
{
"name": "react-perf-component",
"version": "2.1.3",
"description": "Higher-order component that can measure component performance",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib/",
"compile": "babel -d lib/ src/",
"lint": "eslint --cache .",
"prepublish": "npm run clean && npm run compile",
"test": "jest"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sheepsteak/react-perf-component.git"
},
"keywords": [
"React",
"components",
"performance"
],
"author": "Chris Shepherd <chris@chrisshepherd.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sheepsteak/react-perf-component/issues"
},
"homepage": "https://github.com/sheepsteak/react-perf-component#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"enzyme": "^2.7.1",
"enzyme-to-json": "^1.4.5",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-react": "^6.9.0",
"jest": "^18.1.0",
"pre-commit": "^1.2.2",
"react": "^15.0.0",
"react-addons-perf": "^15.0.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.0.0",
"rimraf": "^2.6.0"
},
"peerDependencies": {
"react": "^15.0.0",
"react-addons-perf": "^15.0.0",
"react-dom": "^15.0.0"
}
}