-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
47
48
49
50
51
52
53
{
"name": "screenerjs",
"version": "0.1.0",
"description": "ScreenerJS visual regression testing tool.",
"bin": {
"screenerjs": "./dist/cli/index.js"
},
"main": "dist/core/index.js",
"engines": {
"node": "10.x",
"npm": "6.x"
},
"scripts": {
"start": "node dist/cli/index.js",
"lint": "tslint -p .",
"compile": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"docker:build": "docker-compose build --force-rm",
"docker:run": "docker-compose run --rm screenerjs sh -c \"npm run start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hamtaai/screenerjs.git"
},
"keywords": [
"visual-regression-testing"
],
"author": "mhavelant",
"maintainers": [
"mhavelant"
],
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/hamtaai/screenerjs/issues"
},
"types": "./types/index.d.ts",
"homepage": "https://github.com/hamtaai/screenerjs#readme",
"devDependencies": {
"@types/node": "^10.12.18",
"husky": "^1.2.1",
"tslint": "^5.12.0",
"tslint-config-security": "^1.13.0",
"tslint-consistent-codestyle": "^1.14.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-sonarts": "^1.8.0",
"tsutils": "^3.5.2",
"typescript": "^3.2.2"
},
"dependencies": {
"commander": "^2.19.0",
"winston": "^3.1.0"
}
}