-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "api-tests",
"version": "1.0.0",
"description": "DHIS2 API Testing",
"homepage": "https://www.dhis2.org",
"license": "BSD-3-Clause",
"private": true,
"author": "Samuel Santos <ssantos@present-technologies.com>",
"contributors": [
"Samuel Santos <ssantos@present-technologies.com>",
"João Antunes <joao.antunes@present-technologies.com>"
],
"scripts": {
"pretest": "./node_modules/eslint/bin/eslint.js features",
"test": "./node_modules/.bin/cucumber-js -f json:reports/cucumber_report.json --tags 'not @ignore'"
},
"repository": {
"type": "git",
"url": "git@github.com:dhis2/api-tests.git"
},
"bugs": {
"url": "https://github.com/dhis2/api-tests/issues"
},
"keywords": [
"dhis2",
"api",
"test"
],
"dependencies": {},
"devDependencies": {
"axios": "^0.16.2",
"chai": "^4.0.2",
"cucumber": "^2.3.1",
"cucumber-html-reporter": "^2.0.0",
"form-data": "2.2.0",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
},
"engines": {
"node": ">=8"
}
}