-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 951 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 951 Bytes
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
{
"name": "sht",
"version": "1.1.0",
"description": "Simple HTML Template - no big deal",
"scripts": {
"test": "mocha",
"test-dev": "mocha --watch --reporter min",
"test-coverage": "nyc --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phonglk/simple-html-template.git"
},
"keywords": [
"html",
"template",
"simple"
],
"bin": {
"sht-cli": "./lib/cli.js",
"sht-cli-watch": "./lib/cli-watch.js"
},
"author": "Le Khoi Phong",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/phonglk/simple-html-template/issues"
},
"homepage": "https://github.com/phonglk/simple-html-template#readme",
"dependencies": {
"chokidar": "^2.0.4"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"mocha": "^3.4.2",
"nyc": "^10.3.2"
}
}