-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 998 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
35
36
37
38
39
40
41
42
43
{
"name": "de.lzone.newsagain",
"displayName": "NewsAgain",
"version": "0.1.0",
"description": "Multi-platform news aggregator.",
"main": "index.js",
"scripts": {
"test": "eslint --ignore-pattern www/assets/js/lib/* www/assets/js && jest --coverage",
"start": "cordova run",
"build": "./build.sh"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.js?$": "babel-jest"
},
"testEnvironment": "jest-environment-jsdom"
},
"dependencies": {
"cordova-android": "12.0.1",
"cordova-browser": "7.0.0",
"cordova-electron": "^4.0.0",
"handlebars": "^4.7.8",
"split.js": "^1.6.5"
},
"cordova": {
"platforms": [
"browser",
"electron",
"android"
],
"plugins": {}
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"babel-jest": "^29.7.0",
"eslint": "^8.49.0",
"idb": "^7.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^28.1.3",
"whatwg-fetch": "^3.6.19"
}
}