forked from touchstonejs/touchstonejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.92 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
{
"name": "touchstonejs",
"version": "0.7.3",
"description": "A Mobile App Framework built with ReactJS",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/touchstonejs/touchstonejs.git"
},
"bugs": {
"url": "https://github.com/touchstonejs/touchstonejs/issues"
},
"keywords": [
"react",
"react-component",
"ui",
"mobile",
"hybrid"
],
"main": "lib/index.js",
"files": [
"lib/",
"less"
],
"scripts": {
"build": "gulp clean:lib && NODE_ENV=production gulp build:lib",
"build:dev": "gulp clean:lib && gulp build:lib",
"build:site": "gulp clean:site && NODE_ENV=production gulp build:site",
"lint": "happiness",
"prepublish": "npm run build",
"start": "gulp site",
"test": "npm run lint",
"watch": "gulp watch:lib"
},
"standard": {
"ignore": [
"**/lib/**",
"**/__build/**"
]
},
"dependencies": {
"@tweenjs/tween.js": "^16.8.0",
"blacklist": "^1.1.2",
"classnames": "^2.2.3"
},
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-container": "^0.3.1",
"react-tappable": "^0.7.1",
"react-addons-css-transition-group": "^0.14.0"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"del": "^2.2.0",
"elemental": "^0.5.11",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-bump": "^1.0.0",
"gulp-connect": "^2.3.1",
"gulp-gh-pages": "^0.5.4",
"gulp-git": "^1.6.1",
"gulp-less": "^3.0.5",
"gutil": "^1.6.4",
"happiness": "^1.0.7",
"react-router": "^0.13.3",
"vinyl-source-stream": "^1.1.0"
}
}