-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "respec-given",
"version": "1.2.1",
"description": "bring rspec-given to JS world, on mocha",
"author": {
"name": "cades kao",
"email": "[email protected]"
},
"main": "./index.js",
"dependencies": {
"convert-source-map": "1.2.0",
"diff": "2.2.3",
"livescript": "1.5.0",
"minimatch": "3.0.0",
"respec-given-core": "1.2.1",
"stringifier": "1.3.0",
"yamljs": "0.2.7"
},
"peerDependencies": {
"mocha": ">=1.20.1"
},
"devDependencies": {
"expect.js": "0.3.1",
"mocha": "2.4.3",
"testem": "1.8.1",
"zen-observable": "0.2.1"
},
"scripts": {
"test": "npm run link && mocha",
"tdd": "testem",
"build": "browserify mocha/browser-entry.js -o mocha/browser.js",
"link": "rm -rf node_modules/respec-given && mkdir -p node_modules/respec-given && cd node_modules/respec-given && ln -s ../../package.json package.json && ln -s ../../index.js index.js && ln -s ../../lib lib && ln -s ../../mocha mocha && cd -"
},
"keywords": [
"mocha",
"rspec",
"given",
"when",
"then",
"test",
"tdd",
"bdd"
],
"repository": {
"type": "git",
"url": "https://github.com/cades/respec-given"
}
}