-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "virtual-jade",
"description": "Compile Jade templates to virtual-dom functions",
"version": "1.0.0",
"author": "Ted Dumitrescu <[email protected]>",
"contributors": [
"Jonathan Ong <[email protected]> (http://jongleberry.com)",
"Josh Wymer <[email protected]>"
],
"license": "MIT",
"repository": "tdumitrescu/virtual-jade",
"bugs": {
"url": "https://github.com/tdumitrescu/virtual-jade/issues"
},
"homepage": "https://github.com/tdumitrescu/virtual-jade",
"dependencies": {
"debug": "^2.1.3",
"jade": "^1.9.2",
"lazyrequire": "^1.2.1",
"with": "^5.0.0"
},
"devDependencies": {
"coveralls": "3.1.1",
"eslint": "^5.10.0",
"expect.js": "^0.3.1",
"istanbul": "^0.4.2",
"js-beautify": "^1.5.5",
"mocha": "^10.2.0",
"parse5-utils": "^1.3.1",
"snabbdom": "^3.0.0",
"snabbdom-to-html": "^3.0.0-beta.1",
"vdom-to-html": "^2.3.0",
"virtual-dom": "^2.0.1"
},
"scripts": {
"lint": "eslint lib test",
"test": "mocha",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-ci": "npm run lint && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot",
"test-g": "mocha -g"
},
"keywords": [
"virtual",
"dom",
"jade",
"html",
"maquette",
"pug",
"reactive",
"snabbdom",
"template",
"templating",
"virtual-dom"
],
"files": [
"lib"
],
"main": "lib"
}