-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "@mrpierrot/cardmaker",
"version": "5.0.0",
"description": "A tool to create cards games",
"main": "lib/index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha -w"
},
"preferGlobal": true,
"bin": {
"cardmaker": "lib/cli.js"
},
"engines": {
"node": ">=6.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrpierrot/cardmaker.git"
},
"author": "Pierre Chabiland <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrpierrot/cardmaker/issues"
},
"homepage": "https://github.com/mrpierrot/cardmaker#readme",
"dependencies": {
"chalk": "^3.0.0",
"chokidar": "^3.3.1",
"command-line-args": "^5.1.1",
"command-line-commands": "^3.0.1",
"command-line-usage": "^6.0.1",
"google-spreadsheet": "^2.0.8",
"handlebars": "^4.7.2",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"open": "^6.0.0",
"puppeteer": "^2.0.0"
},
"devDependencies": {
"mocha": "^4.0.1",
"tmp": "0.0.33"
}
}