-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 984 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
{
"name": "respec-given-lab",
"version": "1.1.0",
"description": "given syntax on top of lab testing framework",
"author": {
"name": "cades kao",
"email": "[email protected]"
},
"main": "./index.js",
"dependencies": {
"respec-given-core": "1.2.1"
},
"devDependencies": {
"expect.js": "0.3.1",
"fsmonitor": "0.2.4",
"lab": "10.9.0",
"zen-observable": "0.2.1"
},
"scripts": {
"test": "npm run link && lab",
"tdd": "fsmonitor -s -p '+*.js' -d . npm run test",
"link": "rm -rf node_modules/respec-given-lab && mkdir -p node_modules/respec-given-lab && cd node_modules/respec-given-lab && ln -s ../../package.json package.json && ln -s ../../index.js index.js && ln -s ../../lib lib && ln -s ../../mocha mocha && cd -"
},
"keywords": [
"rspec",
"given",
"when",
"then",
"test",
"tdd",
"bdd"
],
"repository": {
"type": "git",
"url": "https://github.com/cades/respec-given-lab"
}
}