-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "mocha-given",
"version": "0.1.3",
"description": "Adds a Given-When-Then DSL to mocha as an alternative style for specs",
"author": {
"name": "Robert Fleischmann",
"email": "[email protected]",
"url": "http://robert-fleischmann.de"
},
"main": "./index.js",
"browser": "./browser/mocha-given.js",
"dependencies": {
"coffee-script": "~1.12.3"
},
"peerDependencies": {
"mocha": ">=1.20.1"
},
"devDependencies": {
"expect.js": "~0.3.1",
"mocha": "~2.5.1"
},
"scripts": {
"prepublish": "./node_modules/.bin/coffee -cbo browser lib/mocha-given.coffee",
"test": "./node_modules/.bin/mocha -u mocha-given --compilers coffee:coffee-script -R spec",
"link": "mkdir -p node_modules/mocha-given && cd node_modules/mocha-given && ln -s ../../package.json package.json && ln -s ../../index.js index.js && ln -s ../../lib lib && cd -"
},
"keywords": [
"mocha",
"given",
"when",
"then",
"test",
"tdd",
"bdd"
],
"bugs": {
"url": "https://github.com/rendro/mocha-given/issues"
},
"repository": {
"type": "git",
"url": "rendro/mocha-given"
},
"licenses": [
{
"name": "Apache License 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
]
}