-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
113 lines (113 loc) · 3.17 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "oss-specs",
"version": "0.15.24",
"engines": {
"node": "4.2.1"
},
"description": "A service for exposing specification files in version control via a nice web UI",
"bin": {
"oss-specs": "./bin/www"
},
"directories": {
"lib": "./lib"
},
"repository": "oss-specs/specs",
"license": "MIT",
"contributors": [
"Jim Cresswell <jim@jimcresswell.net> (jimcresswell.net)",
"Stanislaw Wozniak <swozniak@sponte.uk>"
],
"keywords": [
"cucumber",
"specification by example",
"bdd",
"specifications",
"living documentation"
],
"scripts": {
"postinstall": "node_modules/.bin/bower install",
"prestart": "npm stop",
"start": "node ./bin/www",
"stop": "pkill specs || true",
"test": "node_modules/.bin/gulp test:unit && node_modules/.bin/gulp test:features",
"pretest-with-coverage": "npm start &",
"test-with-coverage": "node_modules/.bin/istanbul cover node_modules/.bin/cucumber-js --report teamcity --report lcov -- --require features-support -f progress",
"posttest-with-coverage": "npm stop",
"upload-coverage-data": "node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info"
},
"paths": {
"server-js": [
"bin/www",
"app.js",
"routes/**/*.js",
"lib/**/*.js"
],
"client-js": "public/javascript/**/*.js",
"cucumber-support-js": "features-support/**/*.js",
"unit-test-js": [
"lib/**/*test.js",
"routes/**/*test.js",
"public/**/*test.js",
"views/**/*test.js",
"feature-support/**/*test.js"
],
"gulp-js": [
"gulpfile.js",
"gulp-tasks/**/*.js"
],
"css": "public/css/**/*.css",
"view-templates": "views/**/*.hbs",
"feature-files": "features/**/*.feature",
"test-output-dir": "test-results"
},
"dependencies": {
"body-parser": "^1.14.1",
"cookie-parser": "^1.4.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"file-stream-rotator": "0.0.6",
"file-tree": "git+https://github.com/jimCresswell/file-tree#v1.0.1-rc1",
"gherkin": "^3.1.1",
"github-markdown-css": "^2.0.10",
"hbs": "^3.1.1",
"lodash.assign": "^3.2.0",
"lodash.defaults": "^3.1.2",
"markdown": "^0.5.0",
"morgan": "^1.6.1",
"newrelic": "^1.22.1",
"nodegit": "^0.19.0",
"q": "^1.4.1",
"q-io": "^1.13.1",
"request-promise": "^3.0.0",
"serve-favicon": "^2.3.0",
"session-file-store": "0.0.20",
"tree-model": "^1.0.2",
"underscore": "1.8.3",
"bower": "^1.6.3"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"cucumber": "^1.3.1",
"eslint": "^1.5.1",
"fs-extra": "^1.0.0",
"gulp": "^3.9.0",
"gulp-csslint": "^0.2.0",
"gulp-cucumber": "0.0.22",
"gulp-develop-server": "^0.4.3",
"gulp-eslint": "^1.0.0",
"gulp-help": "^1.6.1",
"gulp-jasmine": "^2.2.1",
"gunzip-maybe": "^1.3.1",
"istanbul": "^0.3.21",
"jasmine-reporters": "^2.0.7",
"minimist": "^1.2.0",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.4",
"selenium-webdriver": "^3.0.1",
"should": "^7.1.0",
"tar-fs": "^1.14.0",
"cucumber-junit": "latest",
"gulp-util": "latest",
"through2": "latest"
}
}