-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "gulp-pug-hyperscript",
"description": "Compile Pug/Jade files into Hyperscript",
"version": "1.0.3",
"homepage": "http://github.com/nextorigin/gulp-pug-hyperscript",
"repository": "git://github.com/nextorigin/gulp-pug-hyperscript.git",
"author": "doublerebel",
"main": "./gulp-pug-hyperscript.js",
"keywords": [
"gulpplugin",
"pug",
"jade",
"hyperscript",
"virtual-dom",
"template",
"gulp",
"plugin",
"transform"
],
"dependencies": {
"gulp-util": "^3.0.2",
"jade": "^1.11.0",
"js-beautify": "^1.6.4",
"merge": "^1.2.0",
"through2": "^2.0.3",
"virtual-jade": "^0.7.1"
},
"devDependencies": {
"coveralls": "^2.11.15",
"escape-string-regexp": "^1.0.5",
"iced-coffee-coverage": "^1.0.21",
"iced-coffee-script": "^108.0.11",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"should": "^11.1.2"
},
"scripts": {
"test": "npm run test:modules && npm run test:report",
"test:modules": "mocha --recursive --compilers coffee:iced-coffee-script/register --require iced-coffee-coverage/register-istanbul test/",
"test:report": "istanbul report",
"test:coverage": "istanbul report text-summary lcov",
"build": "iced --bare --map -o ./ -c src/*"
},
"engines": {
"node": ">= 0.9.0"
},
"license": "MIT"
}