forked from felixrieseberg/parse-server-azure-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "parse-server-azure-storage",
"version": "1.1.0",
"description": "Use Azure Blob Storage with Parse Server",
"main": "lib/AzureStorageAdapter.js",
"repository": {
"type": "git",
"url": "https://github.com/felixrieseberg/parse-server-azure-storage"
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"license": "MIT",
"dependencies": {
"azure-storage": "^1.0.1",
"babel-polyfill": "^6.5.0",
"babel-runtime": "^6.5.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-istanbul": "^0.7.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.1",
"codecov": "^1.0.1",
"jasmine": "^2.4.1",
"parse-server-conformance-tests": "^1.0.0"
},
"scripts": {
"build": "./node_modules/.bin/babel src/ -d lib/",
"test": "./node_modules/.bin/babel-node ./node_modules/babel-istanbul/lib/cli.js cover -x **/spec/** ./node_modules/jasmine/bin/jasmine.js"
},
"engines": {
"node": ">=4.3"
}
}