-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.16 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
{
"name": "@nextbitlabs/onepunch",
"version": "2.6.2",
"description": "Command-line interface to create PDF presentations using web technology.",
"main": "index.js",
"scripts": {
"test": "xo index.js template/src/index.js",
"release": "np"
},
"bin": {
"onepunch": "index.js"
},
"keywords": [
"html",
"css",
"pdf",
"web",
"presentations",
"slides"
],
"files": [
"index.js",
"template",
"LICENSE"
],
"repository": "nextbitlabs/onepunch",
"bugs": "https://github.com/nextbitlabs/onepunch/issues",
"homepage": "https://github.com/nextbitlabs/onepunch",
"author": {
"name": "Riccardo Scalco",
"url": "https://riccardoscalco.github.io/"
},
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"fs-extra": "^8.1.0",
"live-server": "^1.2.1",
"meow": "^6.1.1",
"ora": "^4.1.1",
"puppeteer": "^5.5.0"
},
"devDependencies": {
"np": "^7.0.0",
"xo": "^0.36.1"
},
"publishConfig": {
"access": "public"
},
"xo": {
"envs": [
"browser"
],
"rules": {
"comma-dangle": [
"error",
"always-multiline"
]
}
}
}