forked from SeleniumHQ/selenium-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 KB
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
{
"name": "selenium-ide",
"repository": "git@github.com:SeleniumHQ/selenium-ide.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "cd packages/selenium-ide && yarn start",
"build": "lerna run build",
"test": "jest",
"test:e2e": "jest --testMatch \"**/packages/**/__tests__/**/*.e2e.js\"",
"lint": "yarn lint:scripts",
"lint:scripts": "eslint \"packages/*/src/**/*.js\" \"packages/*/src/**/*.jsx\" \"packages/*/__tests__/**/*.js\" \"packages/*/__mocks__/**/*.js\" \"website/**/*.js\" --ignore-pattern=\"node_modules\"",
"postinstall": "lerna bootstrap",
"watch": "lerna run --no-bail --parallel watch"
},
"jest": {
"testURL": "http://localhost/index.html",
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"./scripts/jest/test.config.js"
],
"testMatch": [
"**/packages/**/__test?(s)__/**/*.spec.js?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"@babel/core": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"jest-dom": "^3.1.4",
"lerna": "^3.13.4",
"prettier": "^1.17.0",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-prettier": "^1.0.6"
}
}