forked from conancat/node-test-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 702 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 702 Bytes
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
{
"name": "nodejs-tests-example",
"version": "0.0.1",
"description": "Example project for writing test cases in NodeJS. Uses Mocha as the main testing engine, and PhantomJS for browser testing.",
"main": "app.js",
"directories": {
"test": "tests"
},
"dependencies": {
"express": ">= 0.0.1",
"mongoose": ">= 0.0.1",
"jade": ">= *"
},
"devDependencies": {
"request": ">= 0.0.1",
"mocha": ">= 0.0.1",
"chai": ">= 0.0.1",
"phantom": ">= 0.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/cellkast/eumakh.git"
},
"author": "",
"license": "BSD"
}