-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "@applitools/docker-compose-mocha",
"version": "2.0.5",
"description": "Tool used for setting up an isolated environment for end to end testing / integration testing using Docker Compose",
"main": "index.js",
"scripts": {
"lint": "eslint ./lib/**/*.js ./test/**/*.js ./*.js --fix",
"test": "npm run test:unit && npm run test:e2e && npm run lint #&& npm run flow",
"test:e2e": "mocha --no-timeouts test/end2end/*.js",
"test:unit": "mocha test/unit/*.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/applitools/docker-compose-tool.git",
"private": true
},
"author": "Itamar Arjuan",
"license": "UNLICENSED",
"dependencies": {
"chalk": "^4.1.2",
"chance": "^1.1.4",
"child-process-promise": "^2.2.1",
"cli-spinner": "^0.2.10",
"js-yaml": "^3.13.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@applitools/build-commons": "^1.1.13",
"@applitools/sample-web-app-testkit": "^1.3.85",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"flow-bin": "^0.116.1",
"mocha": "^6.2.2",
"sinon": "^8.1.1"
}
}