-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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": "transparency",
"version": "1.0.0",
"description": "Transparency is a minimal template engine for browsers. It maps JSON objects to DOM elements with zero configuration.",
"homepage": "https://github.com/leonidas/transparency",
"repository": {
"type": "git",
"url": "https://github.com/leonidas/transparency.git"
},
"keywords": [
"template",
"templating",
"engine",
"unobtrusive",
"semantic"
],
"author": "Jarno Keskikangas <jarno.keskikangas@leonidasoy.fi>",
"contributors": [
"Janne Hietamäki <janne.hietamaki@leonidasoy.fi>",
"Sami Hangaslammi <sami.hangaslammi@leonidasoy.fi>",
"Toni Jyrkinen <toni.jyrkinen@leonidasoy.fi>",
"Antti Tarvainen <antti.tarvainen@leonidasoy.fi>",
"Tomi Laine <tomi.laine@leonidasoy.fi>",
"Mikko Ohtamaa <mikko@opensourcehacker.com>"
],
"licenses": [
"MIT"
],
"dependencies": {
"jsdom": "^6.5.0"
},
"devDependencies": {
"bower": "^1.3.12",
"browserify": "^5.12.1",
"coffee-script": "^1.8.0",
"gulp": "^3.8.8",
"gulp-coffee": "^2.2.0",
"gulp-mocha": "^2.1.3",
"gulp-mocha-phantomjs": "^0.10.1",
"gulp-streamify": "^0.0.5",
"gulp-uglify": "^1.0.1",
"jquery": "^2.1.1",
"mocha": "^1.21.4",
"vinyl-source-stream": "^1.0.0"
},
"scripts": {
"test": "gulp test",
"build": "gulp build",
"prepublish": "bower install && gulp release"
},
"testling": {
"html": "testlingSpecRunner.html",
"browsers": [
"ie/8..latest",
"chrome/23..latest",
"firefox/17..latest",
"safari/5.1..latest",
"opera/11.5..latest",
"iphone/6",
"ipad/6"
]
}
}