forked from leancloud/javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.8 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.8 KB
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
{
"name": "leancloud-storage",
"version": "2.5.0",
"main": "./dist/node/index.js",
"description": "LeanCloud JavaScript SDK.",
"repository": {
"type": "git",
"url": "https://github.com/leancloud/javascript-sdk"
},
"scripts": {
"test": "NODE_ENV=test nyc --reporter lcov --reporter text mocha --timeout 300000 test/index.js",
"docs": "jsdoc src README.md package.json -d docs -c .jsdocrc.json",
"build:node": "gulp babel-node",
"build:browser": "CLIENT_PLATFORM=Browser webpack --config webpack/browser.js",
"build:rn": "CLIENT_PLATFORM=ReactNative webpack --config webpack/rn.js",
"build:weapp": "CLIENT_PLATFORM=Weapp webpack --config webpack/weapp.js",
"uglify:browser": "cd dist; uglifyjs av.js -m -c -o av-min.js --in-source-map av.js.map --source-map av-min.js.map; cd ..;",
"uglify:weapp": "cd dist; uglifyjs av-weapp.js -m -c -o av-weapp-min.js --in-source-map av-weapp.js.map --source-map av-weapp-min.js.map; cd ..;",
"build": "gulp build",
"prepublishOnly": "./script/check-version.js"
},
"dependencies": {
"debug": "^2.2.0",
"es6-promise": "^4.0.5",
"localstorage-memory": "^1.0.1",
"md5": "^2.0.0",
"qiniu": "^6.1.11",
"superagent": "^3.3.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^6.2.8",
"babel-plugin-istanbul": "^2.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.14.0",
"docdash": "git+https://github.com/leeyeh/docdash.git#leancloud",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-react": "^5.0.1",
"expect.js": "^0.3.0",
"gulp": "^3.8.10",
"gulp-babel": "^6.1.1",
"gulp-clean": "^0.3.1",
"gulp-shell": "^0.5.2",
"jsdoc": "~3.4.0",
"mocha": "^3.0.0",
"nyc": "^8.1.0",
"should": "^11.1.0",
"uglify-js": "git+https://github.com/Swaagie/UglifyJS2.git#fcb4f2f21584dc5b21af4c10e17733e1686135e4",
"weapp-polyfill": "^1.1.0",
"webpack": "^2.2.0-rc.3"
},
"license": "MIT",
"author": {
"name": "LeanCloud",
"email": "support@leancloud.rocks"
},
"browser": {
"./src/uploader/qiniu.js": "./src/uploader/qiniu-browser.js",
"./src/utils/localstorage.js": "./src/utils/localstorage-browser.js",
"./src/utils/parse-base64.js": "./src/utils/parse-base64-browser.js",
"./src/ua/comments.js": "./src/ua/comments-browser.js",
"./dist/node/index.js": "./dist/av.js"
},
"react-native": {
"./src/utils/localstorage.js": "./src/utils/localstorage-rn.js",
"./dist/node/index.js": "./dist/av-rn.js"
},
"typings": "./storage.d.ts",
"types": "./storage.d.ts",
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}