-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
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
50
{
"name": "featurebook",
"version": "0.0.7",
"description": "A command line tool (and Node.js library) for generating beautiful system specifications from Gherkin source files.",
"bin": {
"featurebook": "./bin/featurebook.js"
},
"preferGlobal": true,
"scripts": {
"test": "mocha --reporter spec --timeout 15000 test/lib && karma start test/public/karma.conf.js"
},
"keywords": [
"gherkin",
"feature",
"specification",
"browser",
"cute",
"beautiful"
],
"author": {
"name": "Daniel Pacak",
"email": "pacak.daniel@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/SOFTWARE-CLINIC/featurebook.git"
},
"bugs": {
"url": "https://github.com/SOFTWARE-CLINIC/featurebook/issues"
},
"license": "Apache 2",
"engines": {
"node": ">= 0.10.x"
},
"dependencies": {
"bash-color": "0.0.3",
"commander": "^2.8.1",
"express": "^4.12.4",
"gherkin": "^2.12.2",
"marked": "^0.3.3"
},
"devDependencies": {
"chai": "^3.0.0",
"concat-stream": "^1.4.8",
"karma": "^0.12.25",
"karma-ng-html2js-preprocessor": "^0.1.2",
"karma-jasmine": "^0.3.2",
"karma-phantomjs-launcher": "^0.2.0"
}
}