-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "babel-bot-lamdba",
"private": true,
"version": "1.0.0",
"description": "An AWS Lambda function that drives babel-bot on GitHub",
"main": "index.js",
"scripts": {
"clean": "rm -f function.zip && rm -rf dist",
"bundle": "bash ./scripts/bundle.sh",
"deploy": "npm run package && node ./scripts/deploy.js",
"package": "npm run clean && npm run build && npm run bundle",
"watch": "nodemon src/server.js --exec babel-node",
"test": "jest & npm run flow",
"build": "babel src --out-dir dist --ignore src/__tests__",
"flow": "flow check"
},
"author": "Andrew Levine",
"license": "MIT",
"dependencies": {
"common-tags": "^1.4.0",
"got": "^6.6.3",
"parse-diff": "^0.4.0",
"timing-safe-equal": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"aws-sdk": "^2.95.0",
"flow-bin": "^0.123.0",
"jest": "^25.0.0",
"nodemon": "^1.11.0"
},
"jest": {
"rootDir": "src",
"notify": true
},
"babel": {
"presets": [
["@babel/preset-env", {
"targets": {
"node": "current"
}
}],
"@babel/preset-flow"
]
}
}