This repository has been archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.49 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
60
61
62
63
{
"name": "ytemplater",
"version": "0.1.1",
"description": "Node.js utility for precompiling templates for use with YUI's Y.Template.",
"main": "./lib/ytemplater.js",
"bin": {
"ytemplater": "./bin/ytemplater"
},
"keywords": [
"yui",
"build",
"cli",
"tool",
"template",
"handlebars",
"precompile"
],
"scripts": {
"test": "istanbul test --print both ./node_modules/mocha/bin/_mocha test/*.js",
"posttest": "istanbul check-coverage --statements 90 --functions 90 --branches 90 --lines 90"
},
"repository": {
"type": "git",
"url": "[email protected]:orionhealth/ytemplater.git"
},
"author": {
"name": "James Bunt",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/orionhealth/ytemplater/issues"
},
"homepage": "https://github.com/orionhealth/ytemplater",
"dependencies": {
"yui": "^3.15.0",
"q": "~1.0.0",
"through": "~2.3.4",
"concat-stream": "~1.4.1",
"map-stream": "~0.1.0",
"stream-combiner": "0.0.4",
"mkdirp": "~0.3.5",
"yargs": "^1.2.1",
"lodash": "^2.4.1"
},
"devDependencies": {
"chai": "~1.9.0",
"istanbul": "~0.2.4",
"mocha": "^1.18.0",
"gulp": "~3.5.2",
"gulp-jshint-cached": "~1.4.2",
"growl": "~> 1.10.0",
"gulp-mocha": "~0.4.1",
"rimraf": "~2.2.6",
"chai-fs": "0.0.3",
"cli-spy": "^0.2.1",
"mock-fs": "^2.2.0",
"chai-as-promised": "^4.1.1"
},
"engines": {
"node": ">= 0.9"
}
}