-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.1 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
84
85
86
87
88
{
"name": "react-flexbox-svg",
"version": "0.11.1",
"description": "Flexbox for SVG in React, using css-flexbox",
"keywords": [
"svg",
"flexbox",
"react-component",
"layout"
],
"repository": "paulmelnikow/react-flexbox-svg",
"main": "lib/index.js",
"scripts": {
"lint": "eslint \"**/*.js\"",
"prettier": "prettier --write \"**/*.@(md|js|json|yml)\"",
"prettier:check": "prettier --check \"**/*.@(md|js|json|yml)\"",
"test": "run-p lint prettier:check",
"start": "webpack-dev-server --content-base examples/ --hot --inline -d",
"reopen": "opn http://localhost:8080",
"open": "run-p start reopen",
"prebuild:examples": "rimraf build && mkdir -p build/assets",
"build:examples": "webpack",
"postbuild:examples": "cp examples/* build && cp dist/bundle.js build/assets/",
"build": "rimraf lib && babel src --out-dir lib",
"prepare": "npm run build"
},
"files": [
"lib/**/*.js"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"babel-runtime": "*",
"react": ">=16.13.1"
},
"dependencies": {
"css-layout": "^1.1.1",
"prop-types": "^15.7.2",
"wolfy87-eventemitter": "^5.2.9"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-do-expressions": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-bind": "^7.11.5",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-pipeline-operator": "^7.10.5",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-standard": "^4.0.1",
"npm-run-all": "^4.1.5",
"opn-cli": "^5.0.0",
"prettier": "^2.1.2",
"react": "^16.3.0",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}