forked from nearform/trail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 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
61
62
63
{
"name": "@nearform/trail",
"version": "3.0.0",
"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"
},
"devDependencies": {
"@hapi/lab": "^22.0.5",
"code": "^5.2.0",
"depcheck": "^1.4.0",
"husky": "^4.2.5",
"js-yaml": "^3.14.0",
"lerna": "^3.22.1",
"lodash": "^4.17.20",
"sinon": "^9.2.4",
"standard": "^14.3.4",
"swagger-gen": "^1.1.3"
},
"standard": {
"ignore": [
"docs/*"
]
},
"husky": {
"hooks": {
"pre-push": "npm run sanity"
}
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}