This repository has been archived by the owner on Mar 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
{
"name": "react-onsenui",
"version": "1.0.3",
"description": "Onsen UI - React Components for Hybrid Cordova/PhoneGap Apps with Material Design and iOS UI components",
"main": "dist/react-onsenui.js",
"scripts": {
"build": "npm run lint && rollup -c",
"prepublish": "npm run build",
"commit-dist": "git commit -m 'Update generated files.' dist docs && git push origin master",
"postpublish": "npm run gen-docs && npm run commit-dist && npm run release-github",
"release-github": "node githubRelease.js",
"lint": "eslint --ext .js,.jsx src",
"lint-fix": "eslint --ext .js,.jsx src --fix",
"dev": "webpack-dev-server --progress --host 0.0.0.0",
"test": "karma start",
"gen-docs": "node ./docgen.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OnsenUI/react-onsenui.git"
},
"keywords": [
"react",
"react-component",
"phonegap",
"cordova",
"hybrid",
"app",
"mobile",
"ui",
"onsen",
"onsenui"
],
"author": "Onsen UI Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OnsenUI/react-onsenui/issues"
},
"homepage": "https://onsen.io/v2/",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"chai": "^3.5.0",
"colors": "^1.1.2",
"css-loader": "^0.25.0",
"eslint": "^3.7.1",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.9.0",
"filter-files": "^0.4.0",
"github": "^3.1.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"onsenui": "^2.0.3",
"prompt": "^1.0.0",
"react": "^15.3.2",
"react-docgen": "^2.11.0",
"react-dom": "^15.3.2",
"react-hot-loader": "^1.3.0",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.4",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2",
"onsenui": "^2.0.3"
}
}