-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "posify",
"description": "Convert your webpage to platformOS one",
"version": "0.3.4",
"author": "Paweł Kowalski @pavelloz",
"bin": {
"posify": "./bin/run"
},
"bugs": "https://github.com/mdyd-dev/posify/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@oclif/plugin-not-found": "^1.2.4",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"cheerio": "^1.0.0-rc.9",
"clean-css": "^5.1.2",
"degit": "^2.8.4",
"globby": "^11",
"imageoptim-cli": "^3.0.2",
"mime-types": "^2.1.30",
"normalize-url": "^6.0.0",
"ora": "^5.4.0",
"terser": "^5.7.0",
"website-scraper": "^4.2.3",
"website-scraper-existing-directory": "^0.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"jest": "^26.6.3"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/src/**/*.js",
"!/src/**/*.test.js",
"/oclif.manifest.json"
],
"homepage": "https://github.com/mdyd-dev/posify",
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "posify",
"plugins": [
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-not-found",
"@oclif/plugin-help"
]
},
"repository": "mdyd-dev/posify",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"prepublishOnly": "jest --runInBand",
"test": "jest --runInBand",
"test-watch": "jest --watchAll --runInBand",
"version": "oclif-dev readme && git add README.md"
}
}