-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1020 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1020 Bytes
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
{
"name": "budgie-lambda",
"version": "0.0.1",
"description": "lambda functions",
"main": "index.js",
"scripts": {
"dev": "webpack",
"dist": "webpack -p",
"watch": "NODE_ENV=test DYNAMODB_REGION=eu-central-1 mocha --require babel-register --recursive test/ --watch",
"test": "NODE_ENV=test mocha --require babel-register --recursive test/"
},
"author": "Sebastian Jorgensen <sj@invokit.dk>",
"license": "MIT",
"devDependencies": {
"aws-sdk": "^2.7.20",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"es6-promisify": "^5.0.0",
"fb": "^1.1.1",
"glob": "^7.1.1",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"uuid": "^3.0.1",
"webpack": "^1.14.0"
}
}