-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"name": "@architect/package",
"version": "11.0.4",
"description": "Package .arc for deployment with CloudFormation",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run coverage",
"test:unit": "node --test 'test/unit/**/*-test.js'",
"test:integration": "node --test 'test/integration/**/*-test.js'",
"coverage": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info --test-reporter=spec --test-reporter-destination=stdout 'test/unit/**/*-test.js'",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "https://github.com/architect/package.git"
},
"author": "Brian LeRoux <b@brian.io>",
"license": "Apache-2.0",
"dependencies": {
"@architect/inventory": "~6.1.0",
"@architect/utils": "~6.0.3"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"@aws-lite/client": "~0.23.2",
"@aws-lite/s3": "~0.2.6",
"eslint": "~9.39.2"
}
}