-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 971 Bytes
/
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
{
"name": "knx-filter-v2",
"version": "1.0.0",
"description": "KNX Telegram filter Web-App built using advanced JavaScript's syntax.",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"lint": "npx standard --fix",
"build": "browserify src/index.js -o dist/bundle.js",
"watch": "watchify src/index.js -o dist/bundle.js -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/croghostrider/KNX-Filter-v2.git"
},
"author": "Vinko Varkas",
"license": "MIT",
"bugs": {
"url": "https://github.com/croghostrider/KNX-Filter-v2/issues"
},
"homepage": "https://github.com/croghostrider/KNX-Filter-v2#readme",
"dependencies": {
"@widgetjs/tree": "github:croghostrider/treejs",
"fast-xml-parser": "^4.1.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"mocha": "^10.2.0",
"standard": "^17.0.0",
"uglify-js": "^3.17.4",
"wallabify": "^0.0.15",
"watchify": "^4.0.0"
}
}