-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 950 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
{
"name": "decaf",
"version": "0.1.7",
"description": "Slim runner in CoffeeScript",
"homepage": "https://github.com/limadelic/decaf",
"repository": {
"type": "git",
"url": "https://github.com/limadelic/decaf.git"
},
"keywords": ["testing", "atdd", "bdd"],
"author": "limadelic <[email protected]>",
"contributors": [
"Isel Fernandez <[email protected]>",
"Mike Suarez <[email protected]>"
],
"licenses": ["MIT"],
"dependencies": {
"coffee-script": "latest",
"underscore": "latest"
},
"devDependencies": {
"mocha": "latest",
"nodemon": "latest",
"sinon": "latest",
"should": "latest"
},
"main": "./lib/decaf",
"bin": {
"decaf": "./bin/decaf",
"decaf-js": "./bin/decaf-js"
},
"scripts": {
"posttest": "coffee -c -o lib src",
"test": "mocha",
"auto-test": "nodemon -w src -w test node_modules/mocha/bin/mocha",
"start": "./startFitNesse.sh"
}
}