-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "yola-bowser",
"version": "1.2.2",
"description": "Wrapper for bowser library with a custom API",
"main": "dist/index.js",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode production",
"dev:watch": "webpack-dev-server --config ./webpack.sandbox.config.js",
"lint": "eslint ./src ./sandbox",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "NODE_ENV=production npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yola/yola-bowser.git"
},
"author": "Yola Engineering <engineers@yola.com>",
"license": "MIT",
"homepage": "https://https://github.com/yola/yola-bowser#readme",
"dependencies": {
"bowser": "^2.11.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"babel-jest": "^29.7.0",
"babel-loader": "^8.4.1",
"eslint": "^8.57.1",
"eslint-plugin-yola": "^2.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^12.5.0",
"prettier": "^3.0.0",
"source-map-loader": "^5.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}