-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 KB
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": "htmly",
"version": "1.1.2",
"description": "A browserify transform for html (with vitamines)",
"main": "./lib/htmly.js",
"scripts": {
"test": "mocha",
"spec": "mocha --reporter spec",
"monitor": "mocha --reporter spec --watch",
"debugtest": "node-debug _mocha",
"coverage": "rm -rf ./lib-cov && jscoverage ./lib ./lib-cov && COVERAGE=true mocha --reporter html-cov > ./coverage.html || true && rm -rf ./lib-cov",
"standard": "./node_modules/.bin/standard",
"doc": "./support/updatedoc.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nodys/htmly.git"
},
"author": "Jean Ponchon <jean.ponchon@novadiscovery.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodys/htmly/issues"
},
"homepage": "https://github.com/nodys/htmly",
"dependencies": {
"async": "^2.0.1",
"chokidar": "^1.6.0",
"concat-stream": "^1.5.2",
"debug": "^2.0.0",
"extend": "^3.0.0",
"html-minifier": "^3.0.2",
"lrio": "^1.2.1",
"relative-package": "^1.0.0",
"resolve": "^1.1.7",
"slash": "^1.0.0",
"syntax-error": "^1.1.6",
"through2": "^2.0.1"
},
"devDependencies": {
"browserify": "^13.1.0",
"docflux": "^1.1.2",
"expect.js": "*",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"standard": "^8.0.0"
},
"browser": "./src/htmly-browser.js",
"keywords": [
"html",
"browserify",
"browserify-transform",
"browserify-plugin",
"livereload",
"browser",
"webcomponent"
],
"publishConfig": {
"registry": "http://registry.npmjs.org/"
}
}