-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 KB
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
{
"name": "react-box-size",
"version": "1.1.0",
"description": "A basic react-wrapper component for sizing a box.",
"main": "dist/index.js",
"repository": "https://github.com/hcjk/react-box-size.git",
"author": "Henry Kaufman <hkaufman19@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"dev": "x0 dev demo/App.js",
"test": "ava --verbose",
"build": "NODE_ENV=production webpack -p",
"prepublish": "babel src -d dist"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"test/*.js"
]
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.24.1",
"eslint": "3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "5.1.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.28.0",
"path": "0.12.7",
"react-test-renderer": "^15.6.1",
"webpack": "2.4.1",
"webpack-dev-middleware": "^1.11.0",
"webpack-dev-server": "2.4.2",
"webpack-hot-middleware": "^2.18.0"
}
}