-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
104 lines (104 loc) · 3.12 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@iobroker/create-adapter",
"version": "2.6.5",
"description": "Command line utility to create customized ioBroker adapters",
"keywords": [],
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"create-adapter": "bin/create-adapter.js"
},
"files": [
"/bin",
"/build",
"/adapter-creator.png"
],
"author": {
"name": "AlCalzone",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/ioBroker/create-adapter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/create-adapter.git"
},
"bugs": {
"url": "https://github.com/ioBroker/create-adapter/issues"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@alcalzone/release-script": "^3.5.9",
"@tsconfig/node18": "^18.2.2",
"@types/ansi-colors": "^3.2.2",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/debug": "4.1.8",
"@types/eslint": "^8.56.1",
"@types/fs-extra": "^11.0.1",
"@types/json5": "2.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.19.4",
"@types/proxyquire": "^1.3.28",
"@types/semver": "^7.3.13",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"execa": "^8.0.1",
"jsonschema": "^1.4.1",
"mocha": "^10.2.0",
"proxyquire": "^2.1.3",
"rimraf": "^4.4.1",
"sinon": "^15.1.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"tsx": "^4.7.0"
},
"dependencies": {
"@iobroker/adapter-dev": "^1.2.0",
"@typescript-eslint/parser": "^6.17.0",
"alcalzone-shared": "^4.0.3",
"ansi-colors": "^4.1.3",
"axios": "^1.3.4",
"debug": "^4.3.4",
"enquirer": "^2.3.6",
"eslint": "^8.56.0",
"fs-extra": "^11.1.1",
"json5": "^2.2.3",
"p-limit": "^5.0.0",
"prettier": "^3.1.1",
"semver": "^7.5.0",
"typescript": "~5.3.3",
"yargs": "^17.7.2"
},
"scripts": {
"linkTemplates": "node --require tsx/cjs maintenance/generateTemplateIndex.ts",
"prebuild:cacheLicenses": "node --require tsx/cjs maintenance/cacheLicenses.ts",
"prebuild:cleanBuildDir": "rimraf ./build",
"prebuild": "npm run prebuild:cleanBuildDir && npm run linkTemplates && npm run prebuild:cacheLicenses",
"build": "tsc -p tsconfig.build.json",
"postbuild": "copyfiles \"templates/**/*.raw.*\" build",
"watch": "tsc -p tsconfig.build.json --watch",
"test:ts": "mocha src/**/*.test.ts",
"test:baselines": "mocha test/create-adapter.test.ts",
"pretest": "npm run linkTemplates",
"test": "npm run test:ts && npm run test:baselines",
"test:watch": "mocha src/**/*.test.ts --watch",
"lint:ts": "eslint {src,test,.github,maintenance}/**/*.ts",
"lint": "npm run lint:ts",
"release": "release-script",
"prepublishOnly": "npm run build"
},
"readme": "README.md"
}