forked from planttheidea/react-rendered-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.52 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"author": "planttheidea",
"ava": {
"babel": "inherit",
"concurrency": 5,
"failFast": true,
"files": [
"./test/*.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"verbose": true
},
"bugs": {
"url": "https://github.com/planttheidea/react-rendered-size/issues"
},
"dependencies": {
"react-dom": ">=0.14.0"
},
"description": "Get the rendered size of a React element without needing to render it",
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.24.0",
"eslint": "^3.18.0",
"eslint-config-rapid7": "^2.8.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.3",
"html-webpack-plugin": "^2.28.0",
"in-publish": "^2.0.0",
"nyc": "^10.1.2",
"optimize-js-plugin": "^0.0.4",
"react": ">=0.14.0",
"react-virtualized": "^9.3.0",
"remeasure": "^2.1.4",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"webpack": "^2.2.1",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.2"
},
"homepage": "https://github.com/planttheidea/react-rendered-size#readme",
"keywords": [
"moment",
"date",
"time"
],
"license": "MIT",
"main": "lib/index.js",
"name": "react-rendered-size",
"peerDependencies": {
"react": ">=0.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planttheidea/react-rendered-size.git"
},
"scripts": {
"clean": "rimraf lib && rimraf dist",
"dev": "NODE_ENV=development webpack-dashboard -p 3210 -- webpack-dev-server --colors --config=webpack.config.dev.js",
"dist": "NODE_ENV=development webpack --colors --profile --progress",
"dist:minified": "NODE_ENV=production webpack --colors --profile --progress --config=webpack.config.minified.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"start": "npm run dev",
"prepublish": "in-publish && npm run prepublish:compile || echo",
"prepublish:compile": "npm run lint && npm run test && npm run clean && npm run transpile && npm run dist && npm run dist:minified",
"test": "NODE_PATH=. NODE_ENV=test ava --no-cache",
"test:coverage": "nyc npm test",
"test:watch": "NODE_PATH=. NODE_ENV=test ava --watch",
"transpile": "babel src --out-dir lib"
},
"version": "1.1.0"
}