This repository has been archived by the owner on Mar 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "babel-preset-modern-browsers",
"version": "15.0.2",
"description": "Babel presets for modern browsers",
"keywords": [
"babel",
"preset",
"modern",
"browser",
"browsers"
],
"author": "Christophe Hurpeau <[email protected]> (http://christophe.hurpeau.com/)",
"license": "ISC",
"repository": "https://github.com:christophehurpeau/babel-preset-modern-browsers.git",
"homepage": "https://github.com/christophehurpeau/babel-preset-modern-browsers",
"bugs": {
"url": "https://github.com/christophehurpeau/babel-preset-modern-browsers/issues"
},
"engines": {
"node": ">=10.13.0"
},
"main": "./lib/index.js",
"scripts": {
"generate:test-coverage": "rm -Rf docs/coverage/ ; NODE_ENV=production BABEL_ENV=test jest --coverage --coverageReporters=pob-lcov-reporter --coverageDirectory=docs/coverage/",
"lint": "eslint --quiet *.js lib",
"preversion": "yarn run lint && repository-check-dirty",
"release": "repository-check-dirty && standard-version -a -m 'chore(release): %s [skip ci]' && git push --follow-tags origin master && npm publish",
"test": "jest",
"test:watch": "jest",
"version": "pob-version"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"commitlint": {
"extends": [
"@pob/commitlint-config"
]
},
"jest": {
"cacheDirectory": "./node_modules/.cache/jest",
"testMatch": [
"<rootDir>/lib/**/__tests__/**/*.js",
"<rootDir>/lib/**/*.test.js"
],
"collectCoverageFrom": [
"lib/**/*.js"
],
"moduleFileExtensions": [
"js",
"json"
]
},
"pob": {},
"peerDependencies": {
"@babel/core": "^7.10.5"
},
"dependencies": {
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@pob/commitlint-config": "5.1.1",
"@pob/eslint-config": "40.0.0",
"@pob/eslint-config-node": "41.1.2",
"@pob/root": "3.3.0",
"@types/jest": "26.0.24",
"eslint": "7.32.0",
"eslint-import-resolver-node": "0.3.7",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-unicorn": "22.0.0",
"husky": "4.3.8",
"jest": "26.6.3",
"pob-lcov-reporter": "4.0.1",
"prettier": "2.8.4",
"standard-version": "9.5.0"
}
}