This repository has been archived by the owner on Dec 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "dynamodb-lambda-autoscale",
"version": "0.3.0",
"description": "Autoscale DynamoDB provisioned capacity using AWS Lambda",
"contributors": [
"Thomas Mitchell <channlappio@gmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/channl/dynamodb-lambda-autoscale.git"
},
"main": "dist/index.js",
"options": {
"mocha": "--require resources/mocha-bootload src/**/__tests__/**/*.js"
},
"scripts": {
"localtest": "babel-node ./scripts/localtest.js",
"test": "npm run lint && npm run check",
"lint": "eslint src",
"check": "flow check",
"build": "gulp dist",
"start": "node ./scripts/start.js",
"debug": "node --inspect --debug-brk ./scripts/start.js"
},
"dependencies": {},
"devDependencies": {
"async": "^2.0.0",
"aws-sdk": "2.6.9",
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-react-native": "^1.5.7",
"del": "^2.2.0",
"dotenv": "^2.0.0",
"eslint": "^2.9.0",
"eslint-plugin-babel": "^3.2.0",
"gulp": "^3.9.1",
"gulp-install": "^0.6.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"gulp-zip": "^3.2.0",
"invariant": "^2.2.1",
"json-loader": "^0.5.4",
"measured": "^1.1.0",
"run-sequence": "^1.1.5",
"stats-webpack-plugin": "^0.3.1",
"warning": "^2.1.0",
"webpack": "^1.13.0",
"webpack-stream": "^3.2.0"
}
}