-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
44 lines (44 loc) · 1005 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
42
43
44
{
"name": "mocha-casperjs",
"description": "Write CasperJS tests using Mocha",
"keywords": [
"mocha",
"casperjs",
"bdd",
"phantomjs",
"testing"
],
"version": "0.6.0" ,
"author": "Nathan Black <nathan@nathanblack.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nathanboktae/mocha-casperjs"
},
"readmeFilename": "Readme.md",
"bugs": {
"url": "http://github.com/nathanboktae/mocha-casperjs/issues"
},
"main": "mocha-casperjs.js",
"bin": {
"mocha-casperjs": "./bin/mocha-casperjs"
},
"peerDependencies": {
"mocha": ">= 1.14.0",
"casperjs": ">= 1.1.0-beta3"
},
"devDependencies": {
"chai": "3",
"coffee-script": "1.7.x",
"casper-chai": ">= 0.1.6",
"mocha": "2",
"casperjs": "git://github.com/n1k0/casperjs.git#master",
"phantomjs": "^1.9.1"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/all.coffee"
},
"directories": {
"test": "test"
}
}