-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.27 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": "b-html-cli",
"description": "A CLI for b-html",
"version": "0.3.1",
"author": {
"name": "bouzuya",
"email": "m@bouzuya.net",
"url": "http://bouzuya.net"
},
"bin": {
"b-html": "./bin/b-html"
},
"bugs": {
"url": "https://github.com/b-html/b-html-cli/issues"
},
"dependencies": {
"b-html": "^0.8.0",
"commander-b": "^0.2.2",
"fs-extra": "^0.23.0",
"html2bhtml": "^0.4.1"
},
"devDependencies": {
"coffee-script": "^1.9.3",
"del": "^1.2.0",
"gulp": "^3.9.0",
"gulp-coffee": "^2.3.1",
"gulp-espower": "^0.10.1",
"gulp-mocha": "^2.1.3",
"gulp-sourcemaps": "^1.5.2",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.4",
"power-assert": "^0.11.0",
"run-sequence": "^1.1.2"
},
"files": [
"bin",
"lib",
"index.js",
"package.json",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/b-html/b-html-cli#readme",
"keywords": [
"CLI",
"HTML",
"b-html"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/b-html/b-html-cli.git"
},
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"prepublish": "gulp",
"test": "gulp test",
"watch": "gulp watch"
}
}