-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.21 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@entando/entando-bundle-validator",
"version": "1.0.0",
"license": "LGPL-3.0",
"description": "Validator for Entando Bundles",
"repository": {
"type": "git",
"url": "git+https://github.com/entando-ps/entando-bundle-validator"
},
"homepage": "https://www.entando.com",
"author": {
"name": "Entando Inc.",
"email": "info@entando.com"
},
"main": "./lib/index.js",
"bin": {
"entando-bundle-validator": "./bin/index.js"
},
"scripts": {
"test": "jest",
"start": "node ./bin/index.js",
"generate": "node ./bin/index.js generate --dry-run",
"lint": "eslint ."
},
"keywords": [
"entando",
"ecr",
"repository",
"component",
"bundle"
],
"dependencies": {
"chalk": "^2.4.1",
"commander": "^7.1.0",
"js-yaml": "^3.12.0",
"lodash": "^4.17.21",
"lodash.topairs": "^4.3.0",
"rxjs": "^6.6.6",
"validate": "^4.4.1"
},
"publishConfig": {
"access": "public"
},
"readme": "README.md",
"bugs": {
"url": "github.com/entando-ps/entando-bundle-validator/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"jest": "^26.6.3",
"husky": "^5.1.3"
}
}