-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1.32 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
{
"name": "igaro-app",
"version": "1.5.0",
"repository": {
"type": "git",
"url": "https://github.com/igaro/app.git"
},
"engines": {
"node": ">=16.0"
},
"license": "LGPL-3.0",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.0",
"@babel/runtime": "^7.5.1",
"core-js": "^3.1.4",
"express": "^4.16.2",
"po2json": "^1.0.0-alpha",
"regenerator-runtime": "^0.13.2",
"sass": "^1.44.0",
"watch": "^0.13.0",
"webdriver-manager": "^12.1.1",
"yargs": "^13.2.4"
},
"bin": {
"nightwatch": "./node_modules/nightwatch/bin/nightwatch"
},
"scripts": {
"postinstall": "./node_modules/webdriver-manager/bin/webdriver-manager update",
"pretest": "fuser -k 4444/tcp | true && fuser -k 3006/tcp | true && (./node_modules/webdriver-manager/bin/webdriver-manager start &) && (./build.js --recipe=devel --serve=3006 &) && sleep 3",
"test": "./node_modules/nightwatch/bin/nightwatch -e firefox -c ./tests/nightwatch.json ./tests/src",
"posttest": "fuser -k 3006/tcp | true && fuser -k 4444/tcp | true",
"deploy": "./build.js --recipe=deploy && chmod -R 755 ./target/deploy && rsync -avPz --progress -e 'ssh' ./target/deploy/ [email protected]:/home/igaro/public_html"
}
}