-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.33 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
{
"name": "tplink-smarthome-crypto",
"version": "4.0.0",
"description": "TP-Link Smarthome Crypto",
"keywords": [
"tplink",
"kasa",
"smarthome",
"smartplug",
"smartswitch",
"smartbulb"
],
"homepage": "https://github.com/plasticrake/tplink-smarthome-crypto#readme",
"bugs": {
"url": "https://github.com/plasticrake/tplink-smarthome-crypto/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plasticrake/tplink-smarthome-crypto.git"
},
"license": "MIT",
"author": "Patrick Seal",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf lib/",
"coverage-report-lcov": "nyc report --reporter=lcov",
"docs": "typedoc",
"lint": "eslint --ignore-path .gitignore . --ext .js,.ts --format=pretty && tsc --noEmit",
"prepare": "npm run build",
"release": "git add -A docs/README.md && commit-and-tag-version --sign --commit-all",
"spellcheck": "cspell '{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"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"chai": "^4.3.7",
"commit-and-tag-version": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14"
},
"commit-and-tag-version": {
"scripts": {
"prerelease": "npm test",
"postbump": "npm run docs && git add -A docs"
}
}
}