-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "tartare",
"version": "1.2.1",
"description": "Gherkin-like BDD testing framework for JavaScript based on Mocha",
"license": "Apache-2.0",
"author": "Jose Antonio Rodríguez Fernández <[email protected]>",
"main": "./index",
"bin": {
"tartare": "./bin/tartare"
},
"typings": "lib/tartare.d.ts",
"scripts": {
"lint": "eslint index.js bin lib && tslint ./lib/tartare.d.ts ./test/*.ts --type-check --project ./tsconfig.json",
"changelog": "conventional-changelog --preset jshint --infile CHANGELOG.md --same-file",
"changelog-gh-release": "conventional-changelog --preset jshint --config .changelog.js",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/telefonicaid/tartare.git"
},
"bugs": "https://github.com/telefonicaid/tartare/issues",
"engines": {
"node": ">=0.10",
"npm": ">=1.4.0"
},
"keywords": [
"testing",
"QA",
"acceptance",
"BDD",
"gherkin",
"DDT",
"framework"
],
"dependencies": {
"cli-color": "^1.1.0",
"jsep": "^0.3.0",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"synchronize": "^0.9.15"
},
"devDependencies": {
"conventional-changelog-cli": "^1.2.0",
"eslint": "^2.13.1",
"eslint-config-google": "^0.6.0",
"eslint-plugin-jsdoc": "^2.3.1",
"release-it": "^2.4.3",
"ts-node": "^1.3.0",
"tslint": "^3.15.1",
"tslint-config-typings": "^0.2.4",
"typescript": "^2.0.3"
}
}