-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "serverless-dynalite",
"version": "1.4.0",
"description": "Serverless plugin to run Dynalite locally to handle DynamoDB development. Can watch for table config changes.",
"main": "distribution/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel index.js --out-dir distribution"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"prepublishOnly": "npm run build",
"repository": {
"type": "git",
"url": "git+https://github.com/sdd/serverless-dynalite.git"
},
"keywords": [
"serverless-plugin",
"serverless",
"dynamodb",
"dynalite"
],
"author": "Scott Donnelly",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdd/serverless-dynalite/issues"
},
"homepage": "https://github.com/sdd/serverless-dynalite#readme",
"dependencies": {
"aws-sdk": "^2.41.0",
"babel-polyfill": "^6.26.0",
"dynalite": "^1.2.0",
"graceful-chokidar": "^0.1.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
}
}