-
Notifications
You must be signed in to change notification settings - Fork 3
/
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"
},
"description": "Get the rendered size of a React element without needing to render it",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.5",
"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": "^5.12.1",
"eslint-config-rapid7": "^2.8.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"in-publish": "^2.0.0",
"nyc": "^13.1.0",
"optimize-js-plugin": "^0.0.4",
"prop-types": "^15.6.2",
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"react-virtualized": "^9.3.0",
"remeasure": "^2.1.4",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"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",
"react-dom": ">=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-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.1"
}