-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 880 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "python-universaldatatool",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:UniversalDataTool/python-universaldatatool.git",
"author": "seveibar <seveibar@gmail.com>",
"license": "MIT",
"scripts": {
"start:dev": "cypress open",
"cy:run": "cypress run",
"test:cypress": "npm run start:jupyter && sleep 5 && npm run cy:run",
"test:python": "python3 -m pytest universaldatatool",
"start:jupyter": "docker run -d -v $(pwd)/universaldatatool:/home/jovyan/universaldatatool -v $(pwd)/cypress:/home/jovyan/cypress -v $(pwd)/setup.py:/home/jovyan/setup.py -v $(pwd)/requirements.txt:/home/jovyan/requirements.txt -v $(pwd)/setup.sh:/home/jovyan/setup.sh --net host jupyter/base-notebook:python-3.8.4 /home/jovyan/setup.sh"
},
"devDependencies": {
"cypress": "^4.10.0",
"cypress-plugin-retries": "^1.5.2"
}
}