forked from cstivers78/bliss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 969 Bytes
/
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
{
"author": "Chris Stivers <[email protected]>",
"name": "bliss",
"description": "Embedded JavaScript templates based on .NET Razor and Play! Framework templates.",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "https://github.com/cstivers78/bliss"
},
"main": "lib/bliss.js",
"bin": {
"bliss-compile": "./bin/bliss-compile",
"bliss-render": "./bin/bliss-render"
},
"scripts": {
"browser": "coffee -c -j lib/browser.js src/browser-head src/validation src/tags src/tokenizer src/writer src/bliss src/browser-tail",
"clean": "rm -rf lib",
"compile": "coffee -b -c -o lib src",
"build": "npm run-script clean && npm run-script compile && npm run-script browser"
},
"engines": {
"node": ">= 0.5.0 - 0.10.x"
},
"dependencies": {
"html-minifier": ">=0.4.5",
"uglify-js": ">=1.2.3",
"underscore": "1.5.2"
},
"devDependencies": {
"coffee-script": ">=1.2.0"
},
"license": "MIT"
}