-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.18 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
{
"name": "selenide-for-selenium-ide",
"version": "1.0.0",
"description": "A Selenium IDE plugin to export to Selenide code",
"author": "Dmytro Stekanov <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/selenide/selenide-for-selenium-ide.git"
},
"license": "MIT",
"private": true,
"scripts": {
"start": "webpack-dev-server --hot",
"build": "webpack",
"build:prod": "rm -rf build && env NODE_ENV=production yarn build",
"test": "jest",
"lint": "eslint webpack.config.babel.js src/ --ext .js --ext .jsx",
"version": "node scripts/version.js && git add src/manifest.json",
"release-prep": "yarn && yarn test && yarn build:prod && yarn lint",
"release:firefox": "cd build && web-ext-submit",
"release:chrome": "cd build && webstore upload --auto-publish",
"postpublish": "yarn build:prod && npx ./scripts/gh-release.js"
},
"jest": {
"testMatch": [
"**/src/**/__test?(s)__/**/*.js?(x)"
]
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.0.0",
"babel-loader": "^8.1.0",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"eslint": "^4.15.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-jest": "^21.6.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"grizzly": "^4.0.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^24.9.0",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.6",
"putasset": "^4.3.2",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"web-ext-submit": "^3.1.1",
"webpack": "^3.5.6"
},
"dependencies": {
"@seleniumhq/side-utils": "^3.17.2",
"ua-parser-js": "^0.7.19",
"webextension-polyfill": "https://github.com/corevo/webextension-polyfill#2cc27453b501e4426eb6741943fbb4041c0d18f5"
}
}