This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "argos-cli",
"version": "0.3.3",
"description": "Argos command line interface.",
"repository": {
"type": "git",
"url": "git+https://github.com/argos-ci/argos-cli.git"
},
"homepage": "https://github.com/argos-ci/argos-cli",
"bugs": {
"url": "https://github.com/argos-ci/argos-cli/issues"
},
"license": "MIT",
"bin": {
"argos": "bin/argos"
},
"keywords": [
"visual-regression",
"diff-ui",
"compare-screenshots",
"review-process",
"continuous-integration"
],
"scripts": {
"dev:upload": "babel-node ./src/index upload __fixtures__",
"release": "standard-version && conventional-github-releaser --preset angular",
"prebuild": "rm -rf lib",
"build": "NODE_ENV=production babel -d lib src",
"prepublish": "yarn build",
"format": "prettier --write \"**/*.{js,md,json}\" ",
"lint": "eslint .",
"ci": "yarn lint && yarn test --ci && yarn argos",
"test": "jest --runInBand",
"argos": "yarn build && NODE_ENV=production ./bin/argos upload __fixtures__ --token $ARGOS_CLI_TOKEN || true"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"conventional-github-releaser": "^3.1.2",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-smooth": "^2.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"standard-version": "^8.0.0"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^5.1.0",
"convict": "^6.0.0",
"form-data": "^3.0.0",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"mz": "^2.7.0",
"node-fetch": "^2.3.0",
"raven": "^2.6.4",
"update-notifier": "^4.1.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"setupFiles": [
"<rootDir>/test/setupEnv.js"
]
}
}