-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "borschik-server",
"version": "0.0.3",
"description": "Dev HTTP server to process JS and CSS files with borschik",
"homepage": "https://github.com/borschik/borschik-server",
"author": [
{
"name": "Alexey Ten (Lynn)",
"email": "[email protected]"
},
{
"name": "Alexey Androsov",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/borschik/borschik-server.git"
},
"dependencies": {
"coa": "0.4.0",
"vow": "0.3.9",
"vow-fs": "0.2.3",
"borschik": "0.4.0"
},
"devDependencies": {
"chai": "*",
"jshint": "*",
"mocha": "*"
},
"engines": [
"node >= 0.8.0"
],
"main": "index.js",
"bin": {
"borschik-server": "./bin/borschik-server"
},
"licenses": [
{ "type": "MIT" }
],
"scripts": {
"test" : "jshint . && mocha -u bdd -R spec"
}
}