-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
{
"name": "opensprinkler",
"version": "0.0.0",
"description": "Designed to allow intuitive control of the OpenSprinkler irrigation controller.",
"keywords": [
"sprinklers",
"opensprinkler",
"sprinkler",
"water"
],
"homepage": "https://github.com/OpenSprinkler/OpenSprinkler-App",
"bugs": {
"url": "https://github.com/OpenSprinkler/OpenSprinkler-App/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenSprinkler/OpenSprinkler-App.git"
},
"license": "AGPL-3.0",
"author": "Samer Albahra",
"main": "index.html",
"scripts": {
"lint": "eslint ./www/js/**",
"prepare": "husky",
"start": "npx http-server --port 8080 --cors '*' -c-1 ./www",
"test": "npx karma start --browsers ChromeHeadless test/karma.conf.js"
},
"lint-staged": {
"package.json": "sort-package-json"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"chai": "^4.5.0",
"cordova": "^12.0.0",
"cordova-android": "^12.0.0",
"cordova-ios": "^7.0.0",
"cordova-osx": "^7.0.0",
"cordova-plugin-3dtouch": "^1.3.8",
"cordova-plugin-geolocation": "^4.1.0",
"cordova-plugin-inappbrowser": "^5.0.0",
"cordova-plugin-networkinterface": "^2.2.0",
"cordova-plugin-statusbar": "^3.0.0",
"cordova-plugin-transport-security": "^0.1.2",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"grunt": "^1.6.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-csslint": "^2.0.0",
"grunt-eslint": "^25.0.0",
"grunt-shell": "^4.0.0",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"po2json": "^0.4.5",
"sinon": "^19.0.2",
"sort-package-json": "^2.10.1"
},
"cordova": {
"plugins": {
"cordova-plugin-3dtouch": {},
"cordova-plugin-geolocation": {},
"cordova-plugin-networkinterface": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-transport-security": {},
"cordova-plugin-inappbrowser": {}
},
"platforms": [
"android",
"ios"
]
}
}