-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "pwainit",
"version": "3.0.0",
"description": "Turn your existing website to Progressive Web App or Initiate PWA project using just one command. 'npm i -g pwainit' to install pwainit and get started.",
"main": "bin/index.js",
"scripts": {
"test": "mocha",
"dev": "node bin/index.js",
"prepublishOnly":"npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saurabhdaware/pwainit.git"
},
"keywords": [
"pwainit",
"pwa-init",
"pwa",
"webapps",
"init-pwa",
"website-to-pwa"
],
"author": "Saurabh Daware <saurabhdaware99@gmail.com> (https://saurabhdaware.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/saurabhdaware/pwainit/issues"
},
"homepage": "https://saurabhdaware.github.io/pwainit",
"preferGlobal": true,
"bin": {
"pwainit": "bin/index.js"
},
"dependencies": {
"commander": "^2.20.0",
"fs-extra": "^8.0.1",
"inquirer": "^6.3.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0"
}
}