forked from SeleniumHQ/selenium-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.07 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
{
"name": "selenium-ide",
"repository": "[email protected]:SeleniumHQ/selenium-ide.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "cd packages/selenium-ide && yarn start",
"build:ext": "cd packages/selenium-ide && yarn build",
"build:runner": "cd packages/selenium-side-runner && yarn build",
"build:ext:prod": "cd packages/selenium-ide && yarn build-prod",
"pack:chrome": "cd packages/selenium-ide && yarn build-chrome",
"pack:firefox": "cd packages/selenium-ide && yarn build-firefox",
"test": "jest",
"lint": "eslint packages/selenium-ide/src/{neo,selianize}/ packages/selenium-side-runner/src/ --ext .js --ext .jsx",
"postinstall": "lerna bootstrap"
},
"jest": {
"testMatch": [
"**/packages/**/src/**/__test?(s)__/**/*.js?(x)"
]
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "^22.0.4",
"eslint": "^4.15.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-jest": "^21.6.1",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.5",
"lerna": "^2.6.0"
}
}