forked from gherking/gherkin-assembler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.31 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
{
"name": "gherkin-assembler",
"version": "2.0.1",
"description": "Assembling Gherkin ASTs to feature file string",
"main": "lib/index.js",
"scripts": {
"test": "mocha ./test/*.spec.js ./test/ast/*.spec.js",
"coverage": "istanbul cover --include-all-sources ./node_modules/mocha/bin/_mocha --root ./lib -- ./test/*.spec.js ./test/ast/*.spec.js",
"travis": "istanbul cover --include-all-sources ./node_modules/mocha/bin/_mocha --root ./lib --report lcovonly -- ./test/*.spec.js ./test/ast/*.spec.js -R spec && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"preferGlobal": false,
"repository": {
"type": "git",
"url": "git+https://github.com/szikszail/gherkin-assembler.git"
},
"keywords": [
"gherkin",
"cucumber",
"feature file"
],
"author": "Laszlo Szikszai <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/szikszail/gherkin-assembler/issues"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/szikszail/gherkin-assembler#readme",
"devDependencies": {
"chai": "^4.1.0",
"coveralls": "^3.0.0",
"deep-copy": "^1.2.0",
"istanbul": "^0.4.5",
"mocha": "^4.1.0"
},
"dependencies": {
"gherkin-ast": "^1.0.1"
}
}