-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 KB
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
{
"name": "travis-appbuilder",
"version": "1.1.0",
"description": "",
"main": "app.js",
"scripts": {
"interactive": "cypress open",
"headless": "cypress run",
"pretest": "cd workdir; docker stack deploy -c docker-compose.test.yml test",
"test": "wait-on http-get://127.0.0.1:1337/site/login && cypress run --config video=false",
"posttest": "cd workdir; docker stack rm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appdevdesigns/travis-appbuilder.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/appdevdesigns/travis-appbuilder/issues"
},
"homepage": "https://github.com/appdevdesigns/travis-appbuilder#readme",
"devDependencies": {
"cypress": "^6.4.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"dependencies": {
"wait-on": "^5.2.0"
}
}