-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@everymundo/em-registry-cli",
"version": "0.16.0",
"description": "CLI for the EM Registry",
"bin": {
"em-registry-cli": "bin/em-registry-cli.mjs",
"registry": "bin/em-registry-cli.mjs"
},
"scripts": {
"cover": "nyc -x test --reporter=lcov --reporter=text mocha --recursive",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"check-lint": "standard *.js lib/*.js test/*.js test/*/*.js test/*/*/*.js ds-filters/*.js ds-filters/*/*.js ds-filters/*/*/*.js",
"fix-lint": "standard --fix *.js lib/*.js test/*.js test/*/*.js test/*/*/*.js ds-filters/*.js ds-filters/*/*.js ds-filters/*/*/*.js",
"test": "env LOG_LEVEL=silent mocha --recursive"
},
"engines": {
"node": ">=14.0.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/EveryMundo/em-registry-cli.git"
},
"keywords": [],
"author": "Daniel Santana <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/EveryMundo/em-registry-cli/issues"
},
"homepage": "https://github.com/EveryMundo/em-registry-cli#readme",
"dependencies": {
"@everymundo/aws-sdk-v3-helpers": "^1.11.0",
"@everymundo/http-client": "^4.4.0",
"@everymundo/json-utils": "^1.1.1",
"@everymundo/registry-setup-json-spec": "^0.4.0",
"ajv": "^8.12.0",
"commander": "^12.1.0",
"form-data": "^4.0.0",
"inquirer": "^11.0.2",
"yazl": "^2.5.1"
},
"main": "index.js",
"directories": {
"lib": "lib"
},
"devDependencies": {
"chai": "^5.1.1",
"dotenv": "^16.4.5",
"mocha": "^10.7.3",
"nyc": "^17.0.0",
"sinon": "^19.0.2",
"standard": "^17.1.2"
}
}