-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "@metrological/cli",
"version": "1.2.4",
"description": "Metrological CLI",
"bin": {
"metro": "./bin/index.js"
},
"engines": {
"node": ">=15"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch --collectCoverage",
"lint": "eslint src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Metrological/metrological-cli.git"
},
"author": "Maikel Brons <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Metrological/metrological-cli/issues"
},
"homepage": "https://github.com/Metrological/metrological-cli#readme",
"dependencies": {
"@lightningjs/cli": "^2.9.0",
"axios": "^0.27.2",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"dotenv": "^16.0.2",
"execa": "^4.0.3",
"form-data": "^4.0.0",
"inquirer": "^7.3.3",
"jsonschema": "^1.4.1",
"ora": "^5.1.0",
"path": "^0.12.7",
"shelljs": "^0.8.5",
"targz": "^1.0.1"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.1"
}
}