-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.65 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
{
"name": "balena-typescript-skeleton",
"version": "2.3.0",
"description": "Skeleton template for a balena TypeScript project",
"homepage": "https://github.com/balena-io/balena-typescript-skeleton#readme",
"private": true,
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"balena",
"typescript"
],
"author": "Balena Inc. <hello@balena.io>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io/balena-typescript-skeleton.git"
},
"bugs": {
"url": "https://github.com/balena-io/balena-typescript-skeleton/issues"
},
"files": [
"build/"
],
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc --project tsconfig.release.json",
"lint": "balena-lint lib tests",
"lint-fix": "balena-lint --fix lib tests",
"test:node": "mocha -r ts-node/register --reporter spec tests/**/*.spec.ts",
"test:browser": "karma start",
"test": "npm run build && npm run lint && npm run test:node && npm run test:browser",
"test:fast": "npm run build && npm run test:node",
"prepack": "npm run build",
"prepare": "husky install"
},
"devDependencies": {
"@balena/lint": "^7.2.1",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^10.0.3",
"balena-config-karma": "^4.0.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"husky": "^8.0.0",
"karma": "^6.3.2",
"lint-staged": "^15.0.2",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"versionist": {
"publishedAt": "2023-10-30T14:57:41.744Z"
}
}