forked from tinper-acs/ac-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.94 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ac-qrcodes",
"version": "0.0.2",
"description": "二维码组件",
"keywords": [
"react",
"react-component",
"qrcode",
"tinper",
"yonyou"
],
"main": "es/index.js",
"scripts": {
"clear": "rimraf dist",
"clear:gh-pages": "rimraf ghpages",
"build": "npm run clear && webpack --config config/webpack.config.prod.js",
"dev": "webpack-dev-server --config config/webpack.config.dev.js",
"lint": "eslint --ext .js --ext .jsx src/",
"lint-fix": "eslint --fix --ext .js --ext .jsx src/",
"precommit": "npm run lint",
"es": "rimraf es && babel src -d es --no-comments",
"deploy": "npm run clear:gh-pages && webpack --config config/webpack.config.ghpages.js"
},
"bugs": {
"url": "https://github.com/tinper-acs/ac-qrcode/issues"
},
"homepage": "https://github.com/tinper-acs/ac-qrcode#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tinper-acs/ac-qrcode.git"
},
"author": "[email protected]",
"license": "MIT",
"files": [
"package.json",
"dist",
"es",
"README.md"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bee-button": "^1.0.6",
"bee-layout": "^1.2.7",
"bee-panel": "^1.0.0",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"markdown-styles": "^3.1.10",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"open-browser-webpack-plugin": "0.0.5",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^3.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"tinper-bee": "1.6.9",
"tinper-bee-core": "^0.4.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.1",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0",
"prop-types": "^15.6.0"
},
"dependencies": {
"qr.js": "0.0.0"
}
}