-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.82 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.82 KB
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": "homey-lib",
"version": "2.49.0",
"description": "Shared Library for Homey",
"types": "types/index.d.ts",
"main": "index.js",
"scripts": {
"build": "npm ci; npm run types:generate; npm run schema:generate; npm run schema:copy; npm run pack",
"pack": "webpack",
"lint": "eslint .",
"test": "mocha --parallel",
"locales:apply": "node scripts/apply-locale-files.js",
"locales:generate": "node scripts/generate-locale-files.js",
"types:generate": "tsc --project tsconfig.types.json",
"schema:generate": "npm run capability-schema:generate && npm run app-schema:generate",
"schema:copy": "mkdir -p types/assets/app types/assets/capability && cp assets/app/schema.d.ts types/assets/app/schema.d.ts && cp assets/capability/schema.d.ts types/assets/capability/schema.d.ts",
"capability-schema:generate": "json2ts -i assets/capability/schema.json -o assets/capability/schema.d.ts --unknownAny",
"app-schema:generate": "json2ts -i assets/app/schema.json -o assets/app/schema.d.ts --unknownAny"
},
"engines": {
"node": ">=12.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/athombv/node-homey-lib.git"
},
"author": "Athom B.V.",
"license": "ISC",
"bugs": {
"url": "https://github.com/athombv/node-homey-lib/issues"
},
"homepage": "https://github.com/athombv/node-homey-lib#readme",
"dependencies": {
"ajv": "^6.1.1",
"buffer": "^6.0.3",
"image-size": "^0.6.2",
"semver": "^5.7.0",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-athom": "^2.1.1",
"json-schema-to-typescript": "^15.0.4",
"mocha": "^9.1.3",
"mock-fs": "^5.1.2",
"object-path": "^0.11.8",
"set-value": "^4.1.0",
"typescript": "^5.9.3",
"webpack": "^5.98.0",
"webpack-cli": "^5.1.4"
}
}