-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "combyne",
"description": "A template engine that works the way you expect.",
"version": "2.0.0",
"author": "Tim Branyen (@tbranyen)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tbranyen/combyne.git"
},
"main": "dist/combyne.js",
"devDependencies": {
"amdefine": "^1.0.0",
"browserify": "^11.0.1",
"browserify-derequire": "^0.9.4",
"dateformat": "^1.0.11",
"deamdify": "^0.1.1",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.2",
"grunt-karma": "^0.12.0",
"grunt-karma-coveralls": "^2.5.4",
"grunt-simple-mocha": "^0.4.0",
"jsdoc": "^3.3.2",
"json3": "^3.3.1",
"karma": "^0.13.9",
"karma-coverage": "^0.5.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"mocha": "^2.2.5",
"phantomjs": "^1.9.18",
"requirejs": "^2.1.10"
},
"scripts": {
"test": "grunt test",
"ci": "grunt test coveralls",
"doc": "jsdoc -r -d docs/ lib/ README.md"
}
}