-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.28 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.28 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
{
"name": "@architect/inventory",
"version": "6.1.0",
"description": "Architect project resource enumeration utility",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run test:integration && npm run test:coverage",
"test:integration": "node --test --test-reporter=spec test/integration/*-test.js",
"test:coverage": "node --test --test-reporter=lcov --test-reporter-destination=lcov.info --experimental-test-coverage --test-coverage-lines=100 --test-coverage-exclude='test/**/*' 'test/unit/**/*-test.js' && npx lcoview lcov.info -q -s . -d coverage",
"test:unit": "node --test --test-reporter=spec 'test/unit/**/*-test.js'",
"rc": "npm version prerelease --preid RC",
"vendor": "scripts/vendor"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/architect/inventory.git"
},
"license": "Apache-2.0",
"dependencies": {
"@architect/asap": "~7.0.10",
"@architect/parser": "~8.0.1",
"@architect/utils": "~6.0.0",
"@aws-lite/client": "^0.23.2",
"@aws-lite/ssm": "^0.2.5"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"dotenv": "~17.2.2",
"eslint": "~9.36.0",
"lcoview": "~1.1.1",
"mock-tmp": "~0.0.4"
}
}