-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.46 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
{
"name": "image-comparison-frontend",
"version": "3.4.2",
"description": "Frontend of an image comparison solution. Performs image comparisons during end to end tests and writes test results",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/JochenDiekenbrock/image-comparison-frontend.git",
"keywords": [
"ci",
"continous-integration",
"jenkins",
"image comparison",
"protractor"
],
"author": "Jochen Diekenbrock",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/dashify": "1.0.0",
"@types/jasminewd2": "2.0.8",
"@types/node": "13.5.2",
"conventional-changelog-cli": "2.0.31",
"jasmine": "3.5.0",
"prettier": "1.19.1",
"tslint": "5.20.1",
"typescript": "3.7.5"
},
"dependencies": {
"dashify": "2.0.0",
"protractor": "5.4.3",
"protractor-image-comparison": "3.9.0"
},
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts' '**/*.json'",
"lint": "tslint --project .",
"run-example": "tsc && protractor dist/example/conf.js",
"preversion": "npm run build && git add -A dist",
"version": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"webdriver-update": "node_modules/.bin/webdriver-manager update"
}
}