-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1011 Bytes
/
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
{
"name": "coffee-trace",
"version": "1.4.1",
"engines": [
"node >= 0.4.0",
"node < 0.11.0"
],
"main": "./lib/coffee-trace.coffee",
"dependencies": {
"coffee-script": "*"
},
"description": "_makes debugging coffee-script easier by displaying corresponding lines of code in the stack-trace with style_",
"directories": {
"test": "test"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"mocha": "~1.14.0"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha -R spec -G test/index.coffee --compilers coffee:coffee-script"
},
"repository": {
"type": "git",
"url": "git://github.com/xenomuta/coffee-trace"
},
"keywords": [
"coffee-script",
"sourcemaps",
"coffee-trace",
"debugging",
"stack",
"trace"
],
"author": "Rilke Petrosky Ulloa <xenomuta@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xenomuta/coffee-trace/issues"
},
"homepage": "https://github.com/xenomuta/coffee-trace"
}