-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "pug-vdom",
"version": "1.1.3",
"description": "pug-vdom can compile a pug template into a render function that can create a virtual dom tree",
"main": "pug-vdom.js",
"scripts": {
"test": "mocha",
"watch": "watchify app.js -o public/app.js -v",
"build": "node compile-tpl && browserify src/runtime.js -s pugVDOMRuntime > dist/runtime.js && browserify app.js -o public/app.js",
"start": "npm run watch & nodemon server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/batiste/pug-vdom.git"
},
"author": "batiste.bieler@gmail.com",
"license": "MIT",
"devDependencies": {
"browserify": "^14.5.0",
"doctypes": "^1.1.0",
"express": "^4.15.2",
"jsdom": "^12.2.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"pug-attrs": "^2.0.2",
"virtual-dom": "^2.1.1",
"void-elements": "^3.1.0",
"watchify": "^4.0.0",
"with": "^5.1.1"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"dependencies": {
"pug-lexer": "^3.1.0",
"pug-linker": "^3.0.3",
"pug-load": "^2.0.9",
"pug-parser": "^2.0.2",
"pug-runtime": "^2.0.3"
}
}