-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.56 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
{
"name": "@balena/env-parsing",
"version": "1.2.0",
"description": "A collection of utilities to simplify/standardize env var parsing",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc",
"lint": "balena-lint --typescript src test",
"lint-fix": "balena-lint --typescript --fix src test",
"test": "mocha && tsc --noEmit && tsc --noEmit --project ./tsconfig.dev.json && npm run lint",
"prepack": "npm run build",
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/balena-env-parsing.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/balena-io-modules/balena-env-parsing/issues"
},
"homepage": "https://github.com/balena-io-modules/balena-env-parsing",
"devDependencies": {
"@balena/lint": "^8.0.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"chai": "^4.3.7",
"husky": "^9.0.0",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"mocha": {
"reporter": "spec",
"recursive": true,
"require": "ts-node/register/transpile-only",
"extension": ".ts"
},
"lint-staged": {
"*.ts": [
"balena-lint --fix"
]
},
"versionist": {
"publishedAt": "2024-09-12T16:02:27.595Z"
}
}