-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "@architect/package",
"version": "9.0.3",
"description": "Package .arc for deployment with CloudFormation",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run coverage",
"test:nolint": "npm run coverage",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-arc",
"test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-arc",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/architect/package.git"
},
"author": "Brian LeRoux <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@architect/inventory": "~4.0.5",
"@architect/utils": "~4.0.6"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"@aws-lite/client": "^0.21.1",
"@aws-lite/s3": "^0.1.21",
"cross-env": "^7.0.3",
"eslint": "~9.1.1",
"mock-tmp": "~0.0.4",
"nyc": "^15.1.0",
"run-parallel": "~1.2.0",
"tap-arc": "~1.2.2",
"tape": "~5.7.5"
}
}