-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
{
"name": "forms-popover",
"jest": {
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/fileMock.js"
},
"testPathIgnorePatterns": [
"src/js/__tests__/e2e/e2e.server.js"
]
},
"version": "1.0.0",
"description": "Working with HTML forms popover",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint .",
"test": "jest --testPathPattern=./src/",
"coverage": "jest --testPathPattern=./src/ --coverage",
"e2e": "jest --testPathPattern=./e2e/ --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igor-chazov/ahj-hw-forms-popovers"
},
"author": "Igor Chazov <[email protected]>",
"license": "ISC",
"homepage": "https://igor-chazov.github.io/ahj-hw-forms-popovers",
"bugs": {
"url": "https://github.com/igor-chazov/ahj-hw-forms-popovers/issues"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"babel-jest": "^27.2.4",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"jest": "^27.2.4",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^1.6.2",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"puppeteer": "^10.4.0",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.57.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@yarnpkg/pnpify": "^3.0.1-rc.9",
"core-js": "^3.18.3",
"push-dir": "^0.4.1"
}
}