-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
106 lines (106 loc) · 2.6 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
101
102
103
104
105
106
{
"name": "skygear-chat",
"version": "1.7.0",
"description": "JS SDK for skyegar chat plugin",
"homepage": "https://github.com/SkygearIO/chat-SDK-JS#readme",
"author": "Rick Mak",
"files": [
"cloud.js",
"dist"
],
"main": "dist/index.js",
"keywords": [
"skygear",
"chat",
"plugin"
],
"scripts": {
"doc": "esdoc -c esdoc.json",
"test": "gulp",
"dev": "gulp --type dev dev",
"babel": "gulp babel",
"demo": "gulp browserify && cp dist/bundle.js demo/bundle.js",
"prepublish": "gulp prepublish",
"deploy": "gulp deploy",
"deploy-latest": "gulp deploy --latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkygearIO/chat-SDK-JS.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SkygearIO/chat-SDK-JS/issues"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-shim": "^3.8.14",
"chai": "^3.5.0",
"del": "^2.0.2",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^3.1.1",
"eslint-config-xo-space": "^0.15.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^3.8.0",
"extend": "^3.0.2",
"gulp": "^4.0.0",
"gulp-awspublish": "^3.4.0",
"gulp-babel": "^6.1.2",
"gulp-cloudfront-invalidate-aws-publish": "^0.2.1",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^1.1.3",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^6.0.0",
"gulp-plumber": "^1.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^2.0.1",
"gulp-util": "^3.0.8",
"hoek": "^4.2.1",
"isparta": "^4.0.0",
"marked": "^0.3.9",
"nock": "^9.0.2",
"require-dir": "^0.3.1",
"sinon": "^1.17.7",
"undertaker-forward-reference": "^1.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"eslintConfig": {
"extends": "xo-space",
"presets": [
"es2015"
],
"env": {
"mocha": true
}
},
"peerDependencies": {
"skygear": "^1.3.0"
},
"dependencies": {
"skygear": "^1.6.4",
"underscore": "^1.8.3",
"uuid": "^3.0.1"
},
"browserify-shim": {
"skygear": "global:skygear"
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}