-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "appraise",
"version": "0.6.3",
"description": "Painless visual test automation",
"main": "index.js",
"scripts": {
"pretest": "eslint src spec",
"ut": "node spec/support/jasmine-runner.js",
"test": "node spec/support/jasmine-runner.js && node ./bin/cmd.js run --puppeteer-args=\"$PUPPETEER_ARGS\"",
"debug": "node debug spec/support/jasmine-runner.js",
"start": "node ./bin/cmd.js",
"prepublishOnly": "npm shrinkwrap && node src/util/doc-md.js"
},
"files": [
"src",
"templates",
"logo.png",
"*.md",
"*.js",
"bin",
"docs"
],
"bin": {
"appraise": "./bin/cmd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppraiseQA/appraise.git"
},
"author": "Gojko Adzic <gojko@gojko.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AppraiseQA/appraise/issues"
},
"homepage": "https://github.com/AppraiseQA/appraise#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"handlebars": "^4.7.7",
"js-yaml": "^3.13.1",
"markdown-it": "^13.0.1",
"markdown-it-github-preamble": "^1.0.0",
"minimist": "^1.2.7",
"pixelmatch": "^5.2.0",
"pngjs": "^5.0.0",
"puppeteer": "^19.3.0",
"sanitize-filename": "^1.6.1",
"sequential-promise-map": "^1.1.0",
"shelljs": "^0.8.5",
"uuid": "^3.1.0"
},
"devDependencies": {
"eslint": "^8.28.0",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^4.1.1"
}
}