-
Notifications
You must be signed in to change notification settings - Fork 270
/
Copy pathpackage.json
88 lines (88 loc) · 2.34 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": "amazeui-touch",
"title": "Amaze UI Touch",
"version": "0.1.0-beta2",
"description": "Web Components for Mobile UI based on React.js",
"main": "lib/index.js",
"scripts": {
"start": "gulp",
"build": "env NODE_ENV=production gulp build",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "./node_modules/.bin/eslint ./src/js/",
"changelog": "github-changes -o amazeui-touch -r amazeui-touch -a"
},
"repository": {
"type": "git",
"url": "https://github.com/amazeui/amazeui-touch.git"
},
"keywords": [
"amazeui",
"react",
"react-component",
"amazeui-touch",
"react-amazeui",
"web-components"
],
"author": "AllMobilize Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/amazeui/amazeui-touch/issues"
},
"homepage": "https://github.com/amazeui/amazeui-touch#readme",
"devDependencies": {
"babel": "^6.0.15",
"babel-eslint": "^4.1.4",
"babel-loader": "^6.0.1",
"babel-plugin-transform-object-rest-spread": "^6.0.14",
"babel-plugin-transform-react-jsx": "^6.0.18",
"babel-preset-es2015": "^6.1.2",
"babel-preset-stage-0": "^6.1.2",
"babelify": "^7.2.0",
"brfs": "^1.4.1",
"browser-sync": "^2.9.11",
"browserify": "^12.0.1",
"clipboard": "^1.5.3",
"del": "^2.0.2",
"eslint": "^1.8.0",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.7.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.2",
"gulp-babel": "^6.1.0",
"gulp-csso": "^1.0.0",
"gulp-header": "^1.7.1",
"gulp-if": "^2.0.0",
"gulp-load-plugins": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sass": "^2.1.0",
"gulp-size": "^2.0.0",
"gulp-uglify": "^1.4.1",
"gulp-util": "^3.0.6",
"marked": "^0.3.5",
"markedify": "0.0.2",
"merge-stream": "^1.0.0",
"react-router": "^1.0.0",
"run-sequence": "^1.1.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.6.0",
"webpack-stream": "^2.1.1"
},
"dependencies": {
"classnames": "^2.2.0",
"react": "^0.14.2",
"react-addons-css-transition-group": "^0.14.2",
"react-dom": "^0.14.2"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-object-rest-spread",
"transform-react-jsx"
]
}
}