-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "domly",
"version": "0.0.9",
"description": "A template system that generates DOM",
"main": "index.js",
"engines": {
"node" : ">=0.10"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/lazd/domly.git"
},
"author": "Larry Davis <[email protected]>",
"license": "MIT",
"dependencies": {
"cheerio": "^0.19.0",
"jison": "^0.4.15"
},
"devDependencies": {
"jsdom": "^3.1.2",
"mocha": "^2.2.5",
"chai": "^3.2.0",
"sinon": "^1.16.1",
"grunt": "^0.4.5",
"grunt-karma": "^0.12.0",
"grunt-simple-mocha": "^0.4.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-handlebars": "^0.10.2",
"grunt-contrib-jst": "^0.6.0",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-safari-launcher": "^0.1.1",
"karma-benchmark": "^0.4.0",
"karma-benchmark-reporter": "^0.1.1",
"karma-html2js-preprocessor": "^0.1.0",
"handlebars": "^3.0.3",
"htmlbars": "^0.11.3",
"dot": "^1.0.3"
}
}