-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "feature-express",
"version": "0.5.13",
"description": "Feature-Express is simple way to expose your features in a beatifull html.",
"main": "./lib/reader.js",
"scripts": {
"dev": "nodemon ./bin/global-feature-express",
"bin": "node ./bin/feature-express",
"test": "mocha",
"test_coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha"
},
"bin": {
"feature-express": "./bin/feature-express.js"
},
"author": "Leonardo Menezes",
"contributors": [
"Kalyne Ramon <[email protected]> (http://kalyneramon.com.br/)"
],
"keywords": [
"cucumber",
"feature",
"express"
],
"license": "MIT",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/leomenezessz/feature-express.git"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"nodemon": "^1.17.5"
},
"dependencies": {
"ejs": "^2.5.8",
"express": "^4.16.3",
"fs-extra": "^7.0.1",
"glob": "^7.1.2"
}
}