-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@balena/contrato",
"version": "0.9.4",
"description": "The official contract implementation",
"homepage": "https://github.com/product-os/contrato",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"balena",
"typescript"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/product-os/contrato.git"
},
"bugs": {
"url": "https://github.com/product-os/contrato/issues"
},
"files": [
"build/"
],
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && npm run buildtypes && tsc",
"buildtypes": "ts-node --transpile-only ./scripts/build-types.ts && balena-lint --typescript --fix lib/types",
"doc": "typedoc --options ./typedoc.json",
"lint": "balena-lint -t tsconfig.dev.json --typescript lib tests scripts",
"lint-fix": "balena-lint -t tsconfig.dev.json --typescript --fix lib tests scripts",
"test:node": "mocha -r ts-node/register/transpile-only --reporter spec tests/**/*.spec.ts",
"test": "npm run build && npm run lint && npm run test:node",
"test:fast": "npm run build && npm run test:node",
"prepack": "npm run build"
},
"dependencies": {
"debug": "^3.2.6",
"handlebars": "^4.7.8",
"handlebars-async-helpers": "^1.0.4",
"js-combinatorics": "^0.5.5",
"lodash": "^4.17.19",
"object-hash": "^1.3.1",
"semver": "^5.7.1",
"skhema": "^5.3.2"
},
"devDependencies": {
"@balena/lint": "^8.0.2",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/debug": "^4.1.5",
"@types/js-combinatorics": "^0.5.32",
"@types/lodash": "^4.14.168",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/object-hash": "^2.1.0",
"@types/semver": "^7.3.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cuelang-js": "^1.1.1",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^10.4.0",
"openapi-typescript": "^3.2.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"versionist": {
"publishedAt": "2024-04-30T23:37:32.408Z"
}
}