-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "clientside-haml-js",
"version": "1.0.0",
"description": "The clientside-haml-js is a compiler written in CoffeeScript that compiles text templates in HAML format into Javascript functions that generate HTML.",
"main": "index.js",
"scripts": {
"build": "./node_modules/cake/bin/cake build",
"test": "./node_modules/karma/bin/karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/uglyog/clientside-haml-js.git"
},
"author": "Ronald Holshausen",
"license": "MIT",
"bugs": {
"url": "https://github.com/uglyog/clientside-haml-js/issues"
},
"homepage": "https://github.com/uglyog/clientside-haml-js",
"devDependencies": {
"cake": "^0.1.1",
"coffee-script": "1.11.1",
"karma": "~0.10.1",
"karma-chrome-launcher": "~0.1.0",
"karma-coffee-preprocessor": "~0.1.0",
"karma-jasmine": "~0.1.0",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"jquery": "~> 3.0.0",
"underscore": "1.1.6",
"underscore.string": "^2.3.0",
"json": "^9.0.4"
}
}