-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.36 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
{
"author": {
"name": "Sergey Nikitin",
"email": "nik.pasaran@gmail.com",
"url": "https://github.com/pasaran"
},
"name": "yate",
"description": "Yet Another Template Engine",
"version": "0.0.80",
"homepage": "https://github.com/pasaran/yate",
"repository": {
"type": "git",
"url": "git://github.com/pasaran/yate.git"
},
"dependencies": {
"nopt": "*",
"nommon": "git://github.com/maksimr/nommon.git",
"parse-tools": "git://github.com/maksimr/parse-tools.git",
"brfs": "0.0.8"
},
"devDependencies": {
"mocha": "~1.8",
"mocks": "~0.0.10",
"mockery": "~1.4.0",
"chai-as-promised": "~3.2",
"sinon": "~1.6",
"sinon-chai": "~2.3",
"chai": "~1.5",
"grunt": "~0.4",
"grunt-simple-mocha": "^0.4.1",
"grunt-contrib-watch": "^0.5.0",
"grunt-browserify": "5.0.0",
"matchdep": "~0.1.2"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"bin": "./yate",
"main": "./lib/actions.js",
"files": [
"lib",
"templates",
"yate"
],
"license": {
"type": "MIT",
"url": "https://github.com/pasaran/yate/raw/master/LICENSE"
},
"browserify": {
"transform": [
"brfs"
]
}
}