UNPKG

2.99 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": "3.8.2",
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.0.0",
37 "@babel/plugin-transform-runtime": "^7.0.0",
38 "@babel/preset-env": "^7.0.0",
39 "@babel/runtime": "^7.0.0",
40 "@octokit/rest": "^16.9.0",
41 "@types/mocha": "^5.2.5",
42 "@types/node": "^11.9.0",
43 "ajv": "^6.0.0",
44 "ansi-red": "^0.1.1",
45 "appium-ci": "^0.3.0",
46 "appium-support": "^2.25.0",
47 "appium-xcode": "^3.7.2",
48 "babel-eslint": "^10.0.0",
49 "babel-plugin-istanbul": "^5.0.1",
50 "babel-plugin-source-map-support": "^2.0.1",
51 "bluebird": "^3.5.1",
52 "coveralls": "^3.0.0",
53 "del": "^4.0.0",
54 "eslint": "^5.2.0",
55 "eslint-config-appium": "^4.0.1",
56 "eslint-plugin-import": "^2.2.0",
57 "eslint-plugin-mocha": "^5.0.0",
58 "eslint-plugin-promise": "^4.0.0",
59 "fancy-log": "^1.3.2",
60 "find-root": "^1.1.0",
61 "glob": "^7.1.3",
62 "globby": "^9.0.0",
63 "gulp": "^4.0.0",
64 "gulp-babel": "8.0.0",
65 "gulp-debug": "^4.0.0",
66 "gulp-eslint": "^5.0.0",
67 "gulp-if": "^2.0.2",
68 "gulp-mocha": "^6.0.0",
69 "gulp-rename": "^1.2.2",
70 "gulp-replace": "^1.0.0",
71 "gulp-sourcemaps": "^2.6.4",
72 "gulp-tslint": "^8.1.3",
73 "gulp-typescript": "^5.0.0-alpha.3",
74 "js-yaml": "^3.12.2",
75 "lodash": "^4.0.1",
76 "mocha": "^6.0.0",
77 "moment": "^2.12.0",
78 "node-notifier": "^5.1.2",
79 "nyc": "^13.0.1",
80 "plugin-error": "^1.0.1",
81 "replace-in-file": "^3.4.0",
82 "request": "^2.88.0",
83 "request-promise": "^4.2.2",
84 "semver": "^5.5.0",
85 "source-map-support": "^0.5.3",
86 "teen_process": "^1.14.1",
87 "through2": "^3.0.0",
88 "tslint": "^5.11.0",
89 "typescript": "^3.1.3",
90 "vinyl-paths": "^2.1.0",
91 "yargs": "^13.1.0"
92 },
93 "peerDependencies": {
94 "@babel/runtime": "^7.0.0",
95 "gulp": "^4.0.0"
96 },
97 "scripts": {
98 "clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
99 "test": "gulp once",
100 "watch": "gulp watch",
101 "coverage": "gulp coveralls",
102 "build": "gulp transpile",
103 "precommit-msg": "echo 'Pre-commit checks...' && exit 0",
104 "precommit-test": "REPORTER=dot gulp once",
105 "lint": "gulp lint",
106 "lint:fix": "gulp lint --fix"
107 },
108 "pre-commit": [
109 "precommit-msg",
110 "precommit-test"
111 ],
112 "devDependencies": {
113 "chai": "^4.1.0",
114 "pre-commit": "^1.1.3"
115 }
116}