forked from openhab/openhab-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.18 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
{
"name": "openhab",
"version": "1.2.3",
"description": "JavaScript Library for openHAB Automation",
"private": false,
"license": "EPL-2.0",
"repository": {
"type": "git",
"url": "git://github.com/openhab/openhab-js.git"
},
"dependencies": {
"@js-joda/core": "^4.3.1",
"@js-joda/timezone": "^2.11.1",
"parse-duration": "^0.1.1"
},
"scripts": {
"test": "mocha && npm run lint",
"docs": "rm -Rf ./docs/* && ./node_modules/.bin/jsdoc --configure docs_config.json && mv ./docs/$npm_package_name/$npm_package_version/* ./docs/ && rm -Rf ./docs/$npm_package_name/$npm_package_version",
"deploy": "npm test && npm run docs",
"lint": "npx standardx | snazzy",
"fix-codestyle": "npx standardx --fix",
"webpack": "webpack"
},
"devDependencies": {
"acorn": "^8.6.0",
"dmd-readable": "^1.2.4",
"docdash": "^1.2.0",
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"proxyquire": "^2.1.3",
"rewiremock": "^3.13.9",
"snazzy": "^9.0.0",
"standardx": "^7.0.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.1"
}
}