-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 1.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@reuters-graphics/bluprint",
"version": "0.6.7",
"description": "Dead-easy application scaffolding and CLI.",
"homepage": "https://github.com/reuters-graphics/bluprint#readme",
"bugs": {
"url": "https://github.com/reuters-graphics/bluprint/issues"
},
"author": "Jon McClure <jon.r.mcclure@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:reuters-graphics/bluprint.git"
},
"main": "dist/index.js",
"bin": {
"bluprint": "dist/cli.js"
},
"files": [
"dist/*",
"docs/*"
],
"private": false,
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"scaffold",
"scaffolding",
"boilerplate",
"blueprints",
"template",
"git",
"github",
"repo",
"repository",
"dev",
"development",
"cli",
"tool",
"tooling",
"generator",
"tarball"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup --config rollup.config.js",
"test": "npm run build && NODE_ENV=test mocha --recursive"
},
"devDependencies": {
"@hobbes7878/eslint-config": "^0.0.2",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"eslint": "^5.14.1",
"eslint-plugin-mocha": "^5.3.0",
"expect.js": "^0.3.1",
"memfs": "^3.0.4",
"mocha": "^5.2.0",
"mocha-sinon": "^2.1.0",
"mock-fs": "^5.1.2",
"npm-run-all": "^4.1.5",
"rollup": "^1.29.1",
"rollup-plugin-node-externals": "^2.1.3",
"sinon": "^8.1.0"
},
"dependencies": {
"ajv": "^6.11.0",
"chalk": "^2.4.2",
"ejs": "^2.6.1",
"glob": "^7.1.6",
"hosted-git-info": "^6.1.1",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"mustache": "^4.0.0",
"prompts": "^2.3.0",
"semver": "^7.1.3",
"string": "^3.3.3",
"tar": "^5.0.5",
"update-notifier": "^4.0.0",
"winston": "^3.2.1",
"yargs": "^13.3.0"
}
}