This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "nuxt-twa-module",
"version": "1.3.1",
"description": "A module for NUXT for converting your PWA into an Android app using 'trusted web activities'",
"main": "index.js",
"scripts": {
"test": "jest && codecov",
"predev": "rimraf test/example/android && mkdir test/example/android",
"dev": "nuxt test/example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voorhoede/nuxt-twa-module.git"
},
"author": "Sjoerd Beentjes <[email protected]> (https://sjoerdbeentjes)",
"license": "ISC",
"bugs": {
"url": "https://github.com/voorhoede/nuxt-twa-module/issues"
},
"homepage": "https://github.com/voorhoede/nuxt-twa-module#readme",
"dependencies": {
"@babel/preset-env": "^7.3.1",
"jimp": "^0.9.3",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"handlebars": "^4.1.0",
"consola": "^2.4.1",
"rimraf": "^3.0.2",
"tmp-promise": "^2.0.2"
},
"devDependencies": {
"jest": "^24.1.0",
"@babel/core": "^7.3.3",
"codecov": "^3.2.0",
"eslint": "^6.8.0",
"get-port": "^5.1.1",
"nuxt-edge": "^2.5.0-25842247.c8e17a77",
"request": "^2.88.0",
"request-promise-native": "^1.0.8"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/*js",
"test/module.test.js",
"index.js",
"!test/helpers/*js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/helpers/"
]
},
"keywords": [
"Nuxt",
"TWA",
"PWA",
"Nuxt-module",
"PWAPK",
"Nuxt-js"
]
}