This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
{
"name": "nosmoke",
"version": "2.0.5",
"description": "A cross platform UI crawler which scans view trees then generate and execute UI test cases",
"keywords": [
"nosmoke"
],
"bin": {
"nosmoke": "./bin/nosmoke.js"
},
"main": "index.js",
"files": [
"bin/**/*.js",
"lib/**/*.js"
],
"repository": {
"type": "git",
"url": "git://github.com/macacajs/nosmoke.git"
},
"dependencies": {
"@jimp/plugin-threshold": "^0.5.5",
"canvas": "^2.0.1",
"co": "^4.6.0",
"commander": "^2.9.0",
"fs-extra": "^7.0.0",
"glob": "^5.0.10",
"htmlparser2": "1.5.0",
"image-size": "^0.6.3",
"ios-simulator": "^1.0.17",
"jimp": "^0.5.6",
"koa": "^1.2.1",
"koa-bodyparser": "^2.2.0",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"macaca-logo": "^1.0.0",
"macaca-reporter": "^1.2.10",
"macaca-utils": "^1.0.1",
"node-fetch": "^1.7.2",
"node-uuid": "^1.4.1",
"npm-update": "^1.0.2",
"socket.io": "^2.0.3",
"string-similarity": "^2.0.0",
"terser": "^3.14.1",
"utf8": "^3.0.0",
"window-or-global": "^1.0.1",
"xlogger": "^1.0.4",
"xml2map": "^1.0.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^4.0.0",
"git-contributor": "1",
"husky": "^1.3.1",
"macaca-ecosystem": "^1.0.14",
"mocha": "*",
"nodemon": "^1.18.6",
"nyc": "^13.3.0",
"vuepress": "^0.14.8"
},
"scripts": {
"dev": "nodemon ./bin/nosmoke",
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint .",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"postinstall": "node ./scripts/print.js",
"contributor": "git-contributor",
"preinstall": "node ./scripts/preinstall.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"homepage": "https://macacajs.github.io/nosmoke",
"license": "MIT"
}