-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
108 lines (108 loc) · 3.05 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "autotester",
"version": "0.1.3",
"description": "Chrome extension allowing to develop and run automation tests right in browser",
"author": {
"name": "Vitaliy Potapov",
"email": "noginsk@rambler.ru"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/autotester.git"
},
"engines": {
"node": ">=6"
},
"scripts": {
"dev": "node tasks/dev",
"hub": "selenium-standalone start",
"eslint": "eslint src test tasks",
"code": "node tasks/code",
"test": "npm run test:l",
"test:l": "node tasks/pack4test && node ./test/run local",
"test:b": "node tasks/pack4test && node ./test/run browserstack",
"test:s": "node tasks/pack4test && node ./test/run sauce",
"test:y": "node tasks/pack4test && node ./test/run yandex",
"build": "node tasks/build",
"build-travis": "node tasks/build && node ./test/run sauce",
"pre-release": "node tasks/branch && npm run code && npm run build && node ./test/run local",
"version": "node tasks/version",
"release-patch": "npm run pre-release && npm version patch && git push --follow-tags --no-verify"
},
"dependencies": {},
"devDependencies": {
"archiver": "^1.3.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-react": "^6.24.1",
"bro-fs": "^0.1.12",
"check-dependencies": "^1.0.1",
"chnl": "^0.2.5",
"chromedriver": "^2.29.0",
"circular-dependency-plugin": "^3.0.0",
"classnames": "^2.2.5",
"codemirror": "^5.26.0",
"cpx": "^1.5.0",
"crx": "^3.2.1",
"css-loader": "^0.28.2",
"escape-string-regexp": "^1.0.5",
"eslint": "^3.19.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^7.0.1",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.1",
"fs-extra": "^3.0.1",
"geckodriver": "^1.6.1",
"ghooks": "^2.0.0",
"got": "^6.7.1",
"html-to-text": "^3.2.0",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"json-stringify-safe": "^5.0.1",
"keymirror": "^0.1.1",
"lodash.debounce": "^4.0.8",
"madge": "^1.6.0",
"marked": "^0.3.6",
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"mocha": "^3.4.1",
"normalize-path": "^2.1.1",
"promises-aplus-tests": "^2.1.2",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-codemirror": "^1.0.0",
"react-dom": "^15.5.4",
"react-mdl": "^1.10.3",
"route-parser": "0.0.5",
"selenium-standalone": "^6.4.1",
"selenium-webdriver": "^3.4.0",
"shelljs": "^0.7.7",
"style-loader": "^0.18.0",
"then-chrome": "^1.0.7",
"url-loader": "https://registry.npmjs.org/url-loader/-/url-loader-0.5.8.tgz",
"webpack": "^2.6.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"config": {
"ghooks": {
"pre-commit": "node tasks/code only-changed",
"pre-push": "npm run code && npm test"
}
},
"keywords": [
"selenium",
"webdriver",
"webdriverjs",
"automation",
"testing",
"test",
"acceptance",
"tdd",
"bdd",
"chormedriver",
"chrome"
],
"license": "MIT"
}