-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
89 lines (89 loc) · 2.5 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
{
"name": "tplink-smarthome-simulator",
"version": "5.0.1",
"description": "TP-Link Smarthome Device Simulator",
"keywords": [
"tplink",
"kasa",
"home",
"smartplug",
"smartswitch",
"smartbulb"
],
"bugs": {
"url": "https://github.com/plasticrake/tplink-smarthome-simulator/issues",
"email": "code@plasticrake.com"
},
"repository": {
"type": "git",
"url": "git://github.com/plasticrake/tplink-smarthome-simulator.git"
},
"license": "MIT",
"author": "Patrick Seal",
"type": "commonjs",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc && tsc --project tsconfig.source.json",
"clean": "rimraf lib/ build/",
"coverage-report-lcov": "nyc report --reporter=lcov",
"lint": "eslint --ignore-path .gitignore . --ext .js,.ts --format=pretty && tsc --noEmit",
"prepare": "npm run build",
"release": "commit-and-tag-version --sign",
"spellcheck": "cspell '{examples,src,test}/**/*' *.md",
"pretest": "npm run lint && npm run build",
"test": "npm run test:only",
"test:ci": "npm run test:only",
"test:only": "cross-env NODE_ENV=test && nyc mocha --color"
},
"dependencies": {
"debug": "^4.3.4",
"jsonparse": "^1.3.1",
"lodash.defaultsdeep": "^4.6.1",
"lodash.merge": "^4.6.2",
"tplink-smarthome-crypto": "^4.0.0",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.10",
"@types/debug": "^4.1.11",
"@types/mocha": "^10.0.4",
"@types/node": "^20.9.0",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chai": "^4.3.10",
"chai-things": "^0.2.0",
"commit-and-tag-version": "^12.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-essentials": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=16"
},
"commit-and-tag-version": {
"scripts": {
"prerelease": "npm test"
}
}
}