-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "manifesto-cli",
"version": "2.0.2",
"description": "A CLI app that helps generate a manifest file for your PWA",
"repository": {
"type": "git",
"url": "git+https://github.com/blurdylan/manifesto-cli.git"
},
"main": "bin/manifesto-cli.js",
"author": {
"name": "Dylan Tientcheu",
"email": "dylantientcheu@gmail.com",
"url": "http://dylantientcheu.dev"
},
"preferGlobal": true,
"bin": {
"manifesto-cli": "bin/manifesto-cli.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"manifesto",
"manifest",
"pwa",
"generator",
"cli"
],
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js /lib /bin",
"publish": "npm publish --access public"
},
"dependencies": {
"chalk": "^4.1.1",
"commander": "^7.2.0",
"inquirer": "^8.2.3",
"opn": "^6.0.0",
"semver": "^7.3.5"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0"
}
}