UNPKG

3.06 kBJSONView Raw
1{
2 "name": "appium-gulp-plugins",
3 "description": "Custom gulp plugins to be used across all appium modules",
4 "keywords": [
5 "appium",
6 "gulp",
7 "tools"
8 ],
9 "version": "5.4.1",
10 "author": "appium",
11 "license": "Apache-2.0",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/appium/appium-gulp-plugins.git"
15 },
16 "bugs": {
17 "url": "https://github.com/appium/appium-gulp-plugins/issues"
18 },
19 "engines": [
20 "node"
21 ],
22 "main": "./index.js",
23 "bin": {},
24 "directories": {
25 "lib": "lib",
26 "build": "build",
27 "test": "test"
28 },
29 "files": [
30 ".babelrc",
31 "index.js",
32 "lib"
33 ],
34 "dependencies": {
35 "@babel/core": "^7.0.0",
36 "@babel/plugin-proposal-class-properties": "^7.8.3",
37 "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
38 "@babel/plugin-proposal-numeric-separator": "^7.8.3",
39 "@babel/plugin-proposal-optional-chaining": "^7.8.3",
40 "@babel/plugin-proposal-private-methods": "^7.8.3",
41 "@babel/plugin-syntax-bigint": "^7.0.0",
42 "@babel/plugin-transform-runtime": "^7.0.0",
43 "@babel/preset-env": "^7.0.0",
44 "@babel/runtime": "^7.0.0",
45 "@octokit/rest": "^18.0.0",
46 "@types/mocha": "^8.0.3",
47 "@types/node": "^14.0.1",
48 "ansi-red": "^0.1.1",
49 "axios": "^0.20.0",
50 "babel-eslint": "^10.0.3",
51 "babel-plugin-istanbul": "^6.0.0",
52 "babel-plugin-source-map-support": "^2.0.1",
53 "bluebird": "^3.5.1",
54 "del": "^6.0.0",
55 "eslint": "^7.7.0",
56 "eslint-config-appium": "^4.0.1",
57 "eslint-plugin-import": "^2.2.0",
58 "eslint-plugin-mocha": "^8.0.0",
59 "eslint-plugin-promise": "^4.0.0",
60 "fancy-log": "^1.3.2",
61 "find-root": "^1.1.0",
62 "form-data": "^3.0.0",
63 "glob": "^7.1.3",
64 "globby": "^11.0.0",
65 "gulp": "^4.0.0",
66 "gulp-babel": "^8.0.0",
67 "gulp-debug": "^4.0.0",
68 "gulp-eslint": "^6.0.0",
69 "gulp-if": "^3.0.0",
70 "gulp-mocha": "^7.0.0",
71 "gulp-rename": "^2.0.0",
72 "gulp-replace": "^1.0.0",
73 "gulp-sourcemaps": "^2.6.4",
74 "js-yaml": "^3.12.2",
75 "lodash": "^4.0.1",
76 "merge-stream": "^2.0.0",
77 "mocha": "~8.1.3",
78 "moment": "^2.12.0",
79 "node-notifier": "^8.0.0",
80 "nyc": "^15.0.0",
81 "plugin-error": "^1.0.1",
82 "replace-in-file": "^6.0.0",
83 "rimraf": "^3.0.0",
84 "semver": "^7.0.0",
85 "shell-quote": "^1.6.1",
86 "source-map-support": "^0.5.3",
87 "through2": "^4.0.2",
88 "vinyl-paths": "^3.0.0",
89 "yargs": "^16.0.0"
90 },
91 "peerDependencies": {
92 "@babel/runtime": "^7.0.0",
93 "gulp": "^4.0.0"
94 },
95 "scripts": {
96 "clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
97 "test": "gulp once",
98 "watch": "gulp watch",
99 "coverage": "gulp coveralls",
100 "build": "gulp transpile",
101 "precommit-msg": "echo 'Pre-commit checks...' && exit 0",
102 "precommit-test": "REPORTER=dot gulp once",
103 "lint": "gulp lint",
104 "lint:fix": "gulp lint --fix"
105 },
106 "pre-commit": [
107 "precommit-msg",
108 "precommit-test"
109 ],
110 "devDependencies": {
111 "chai": "^4.1.0",
112 "pre-commit": "^1.1.3"
113 }
114}