-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
35 lines (35 loc) · 1022 Bytes
/
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
{
"name": "layer-publisher",
"version": "1.2.1",
"bin": {
"layer-publisher": "bin/layer-publisher.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "npm run test:unit",
"cdk": "cdk",
"package": "echo 'Not applicable'",
"lint": "eslint --ext .ts --no-error-on-unmatched-pattern src tests",
"lint-fix": "eslint --fix --ext .ts --fix --no-error-on-unmatched-pattern src tests",
"test:unit": "if-node-version '>12' jest --testPathPattern=unit -u",
"test:e2e": "if-node-version '>12' jest --testPathPattern=e2e"
},
"devDependencies": {
"@aws-cdk/cloudformation-diff": "2.25.0",
"@aws-cdk/cx-api": "2.25.0",
"@types/jest": "^26.0.24",
"@types/node": "10.17.27",
"aws-cdk": "2.25.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "10.9.1",
"typescript": "4.8.3"
},
"dependencies": {
"aws-cdk-lib": "2.25.0",
"constructs": "^10.0.0",
"if-node-version": "^1.1.1",
"source-map-support": "^0.5.16"
}
}