-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "react-perf-utils",
"version": "0.0.5",
"description": "wrapper for react/lib/ReactDefaultPerfAnalysis with utility functions for measuring component rendering performance and reporting",
"main": "lib/index.js",
"scripts": {
"build-test": "mkdir -p test/.tmp && babel test/index.js --out-file test/.tmp/index.js",
"test": "npm run lint && npm run build && npm run unit-test",
"unit-test": "npm run build-test && mocha test/.tmp/index.js",
"build": "babel ./src --out-dir ./lib",
"watch": "babel ./src -w --out-dir ./lib",
"lint": "eslint src/index.js",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jstrimpel/react-perf-utils.git"
},
"keywords": [
"react",
"performance"
],
"author": "Jason Strimpel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jstrimpel/react-perf-utils/issues"
},
"homepage": "https://github.com/jstrimpel/react-perf-utils#readme",
"dependencies": {
"object-assign": "^4.1.1",
"react-addons-perf": "^15.4.2",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"mocha": "^2.3.4"
}
}