This repository has been archived by the owner on Jun 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
60 lines (60 loc) · 1.78 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
55
56
57
58
59
60
{
"name": "@nearform/trail",
"description": "Audit trail logging service",
"license": "MIT",
"author": "nearForm Ltd",
"contributors": [
"Paolo Insogna (https://github.com/ShogunPanda)",
"Luis Faustino (https://github.com/dublx)"
],
"homepage": "https://github.com/nearform/trail#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/trail.git"
},
"bugs": {
"url": "https://github.com/nearform/trail/issues"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"depcheck": "lerna run depcheck",
"coverage": "lerna run coverage",
"lint": "standard",
"outdated:all": "npm outdated || echo 'Outdated packages found.'; lerna exec \"npm outdated || echo 'Outdated packages found.'\"",
"pg:init": "cd packages/trail-core && npm run pg:init",
"pg:test:init": "cd packages/trail-core && npm run pg:test:init",
"pg:travis:init": "cd packages/trail-core && npm run pg:travis:init",
"pg:migrate": "cd packages/trail-core && npm run pg:migrate",
"postinstall": "lerna bootstrap",
"sanity:environment": "npm run lint && npm run depcheck",
"sanity": "npm run sanity:environment && npm run test",
"start": "cd packages/trail-hapi-server && npm run start",
"test": "lerna run test",
"clean": "lerna clean",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@hapi/lab": "^23.0.0",
"code": "^5.2.0",
"depcheck": "^1.4.0",
"husky": "^8.0.0",
"lerna": "^5.0.0",
"lodash": "^4.17.20",
"sinon": "^14.0.0",
"standard": "^17.0.0",
"swagger-gen": "^1.1.3"
},
"standard": {
"ignore": [
"docs/*"
]
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}