-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
80 lines (80 loc) · 2.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
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
{
"name": "appium.io",
"version": "1.0.0",
"description": "Documentation project for Appium.io",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"serve": "bundle exec jekyll serve",
"crawl": "wait-on http://localhost:4000 && node ./scripts/crawl.js",
"crawl:prod": "node ./scripts/crawl.js http://appium.io",
"build:docs": "bash ./scripts/docker-build.sh && bash ./scripts/docker-run.sh",
"build:docs:local": "cross-env BUILD_LOCAL_DOCS=true npm run build:docs",
"build:docs:docker": "babel-node scripts/repo.js",
"lint": "eslint scripts/ test/",
"lint:fix": "eslint scripts/ test/ --fix",
"test": "npm run lint && mocha --require @babel/register --timeout 5000 test/",
"test:watch": "npm run lint && mocha --watch --require @babel/register test/",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "npm run test",
"container:rebuild": "Docker build . --tag appiumio/appium-docs"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"bin": {
"appium-dot-io": "npm run build:docs:local && npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appium/appium.io.git"
},
"author": "Dan Graham",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/appium/appium.io/issues"
},
"homepage": "https://github.com/appium/appium.io#readme",
"dependencies": {
"@babel/register": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"appium-support": "^2.8.3",
"babel-eslint": "^10.0.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"jquery": "^3.2.1",
"jsdom": "^19.0.0",
"lodash": "^4.17.4",
"replace-ext": "^2.0.0",
"teen_process": "^2.0.0"
},
"devDependencies": {
"@babel/node": "^7.2.2",
"broken-link-checker": "^0.7.8",
"chalk": "^4.0.0",
"cross-env": "^7.0.2",
"ejs": "^3.0.2",
"eslint": "^8.5.0",
"eslint-config-appium": "4.x",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-promise": "^6.0.0",
"fancy-log": "^2.0.0",
"handlebars": "^4.0.10",
"humanize-duration": "^3.16.0",
"is-absolute-url": "^3.0.3",
"mocha": "^10.0.0",
"pre-commit": "^1.2.2",
"relative": "^3.0.2",
"rimraf": "^3.0.2",
"wait-on": "^6.0.0"
},
"greenkeeper": {
"ignore": []
}
}