-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "parse-server-dynamodb-adapter",
"version": "1.0.8",
"description": "AWS DynamoDB Adapter for Parse Server",
"main": "build/src/index.js",
"scripts": {
"build": "tsc",
"test": "./resources/start-dynamodb.sh && tsc && mocha build/spec && ./resources/stop-dynamodb.sh"
},
"keywords": ["parse-server", "Parse.com", "Parse Server", "DynamoDB", "AWS", "AWS DynamoDB", "Database", "Adapter", "API", "SDK"],
"homepage": "https://github.com/benishak/parse-server-dynamodb-adapter",
"author": "Ben Ishak",
"license": "Apache-2.0",
"repository" : {
"type" : "git",
"url" : "https://github.com/benishak/parse-server-dynamodb-adapter.git"
},
"dependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/node": "^7.0.27",
"aws-sdk": "^2.62.0",
"aws-sdk-mock": "^1.7.0",
"bluebird": "^3.5.0",
"parse": "^1.9.2",
"parse-server": "^2.4.2"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"chai": "^3.5.0",
"eslint": "^4.0.0",
"eslint-plugin-flowtype": "^2.34.0",
"express": "^4.15.3",
"jasmine": "^2.6.0",
"jasmine-spec-reporter": "^4.1.0",
"mocha": "^3.3.0",
"mocha-typescript": "^1.1.2",
"nyc": "^11.0.2",
"randomstring": "^1.1.5",
"source-map-support": "^0.4.15"
}
}