-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 2.09 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
61
62
63
64
65
66
67
68
{
"name": "react-perf-tool",
"version": "0.2.3",
"description": "Record and debug React performance from the browser",
"main": "lib/react-perf-tool.js",
"typings": "lib/react-perf-tool.d.ts",
"scripts": {
"build": "webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "npm run lint && npm run test:unit && npm run test:component",
"test:unit": "mocha --compilers js:babel-core/register --colors ./test/unit/*.spec.js",
"test:component": "mocha --require ./test/component/setup.js --compilers js:babel-core/register --colors ./test/component/*.spec.js",
"lint": "eslint ./src/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/RamonGebben/react-perf-tool.git"
},
"keywords": [
"react-component",
"react",
"performance"
],
"author": "Ramon Gebben <ramon@ra-ge.net>",
"license": "ISC",
"bugs": {
"url": "https://github.com/RamonGebben/react-perf-tool/issues"
},
"homepage": "https://github.com/RamonGebben/react-perf-tool",
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.8.0",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "9.0.1",
"eslint-loader": "^1.6.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"jsdom": "^9.1.0",
"mocha": "2.4.5",
"react": "^15.0.2",
"react-addons-perf": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"style-loader": "^0.13.1",
"webpack": "1.13.0",
"yargs": "4.7.0"
},
"dependencies": {
"chart.js": "^2.1.3",
"fecha": "^2.1.0",
"keymaster": "^1.6.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.6.0",
"react-addons-perf": "^0.14.0 || ^15.4.2"
}
}