-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.37 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
79
80
81
82
83
84
85
86
87
88
{
"name": "nodecg-screenshot-tester",
"version": "8.0.5",
"description": "Automated visual regression testing of NodeCG graphics.",
"scripts": {
"test": "npm run static",
"format": "pretty-quick",
"static": "eslint --parser-options=project:tsconfig.json \"src/**/*.ts\"",
"prebuild": "npm run test",
"build": "trash dist && tsc -p tsconfig.json",
"prerelease": "npm t",
"release": "standard-version",
"postrelease": "npm publish && git push --follow-tags"
},
"author": "Alex Van Camp <email@alexvan.camp>",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.4",
"express-transform-bare-module-specifiers": "^1.0.4",
"is-ci": "^2.0.0",
"log-symbols": "^3.0.0",
"mkdirp": "^0.5.1",
"mock-nodecg": "^1.8.1",
"ora": "^2.1.0",
"p-each-series": "^1.0.0",
"p-limit": "^2.2.2",
"p-map": "^3.0.0",
"physical-cpu-count": "^2.0.0",
"pixelmatch": "^4.0.2",
"pngjs": "^3.4.0",
"progress": "^2.0.3",
"table": "^5.4.6",
"tmp": "0.0.33",
"tslib": "^1.9.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@gamesdonequick/eslint-config": "^2.2.1",
"@gamesdonequick/prettier-config": "^2.2.1",
"@types/cheerio": "^0.22.7",
"@types/express": "^4.16.0",
"@types/is-ci": "^2.0.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.1.1",
"@types/p-each-series": "^1.0.0",
"@types/pixelmatch": "^4.0.0",
"@types/pngjs": "^3.3.1",
"@types/progress": "^2.0.3",
"@types/puppeteer": "^1.3.2",
"@types/table": "^4.0.7",
"@types/tmp": "0.0.33",
"@types/yargs": "^11.0.0",
"ava": "^1.4.1",
"eslint": "^6.8.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"trash-cli": "^1.4.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"peerDependencies": {
"puppeteer": "1 - 2"
},
"bin": {
"nodecg-screenshot-tester": "dist/bin/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodecg/nodecg-screenshot-tester.git"
},
"types": "dist/index.d.ts",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"dist",
"types/augment-window.d.ts"
],
"engines": {
"node": ">=10"
}
}