This repository was archived by the owner on Jan 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
55
{
"scripts": {
"precompile-src": "rm -rf work/dist",
"compile-src": "tsc -p tsconfig-src.json ",
"postcompile-src": "cp package.json work/dist",
"compile-test-ts": "tsc -p tsconfig-test.json",
"transpile-test-js": "BABEL_ENV=test babel work/dist-test --out-dir work/dist-test --source-maps",
"precompile-test": "rm -rf work/dist-test",
"compile-test": "yarn compile-test-ts && yarn transpile-test-js",
"postcompile-test": "cp package.json work/dist-test",
"build": "yarn compile-src && yarn webpack --mode production",
"bundle": "yarn build && ./tools/bin/zip-lambdas",
"lint": "tslint --format codeFrame --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
"pretest": "yarn lint && yarn compile-test",
"test": "nyc ava 'work/dist-test/test/unit/**/*.test.js'"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.0",
"@types/bunyan": "^1.8.4",
"@types/node": "^10.0.7",
"@types/proxyquire": "^1.3.28",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"builtin-modules": "^3.0.0",
"chalk": "^2.3.2",
"nyc": "^12.0.1",
"proxyquire": "^2.0.0",
"require-self-ref": "^2.0.1",
"source-map-support": "^0.5.3",
"tslint": "^5.9.1",
"tslint-config-semistandard": "^7.0.0",
"typescript": "^2.7.2",
"webpack": "^4.1.0",
"webpack-cli": "^3.0.0"
},
"dependencies": {
"aws-sdk": "^2.205.0",
"bunyan": "^1.8.12"
},
"ava": {
"require": [
"require-self-ref",
"source-map-support/register"
]
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}