UNPKG

2.82 kBJSONView Raw
1{
2 "name": "babel-preset-latest-node",
3 "version": "5.5.0",
4 "description": "babel preset latest for node 14 (Current), node 12 (Active LTS) node 10 (Maintenance LTS)",
5 "keywords": [
6 "babel-preset"
7 ],
8 "author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
9 "license": "ISC",
10 "repository": "https://github.com/christophehurpeau/babel-preset-latest-node.git",
11 "homepage": "https://github.com/christophehurpeau/babel-preset-latest-node",
12 "engines": {
13 "node": ">=12.10.0",
14 "yarn": "< 0.0.0"
15 },
16 "main": "./lib/index.js",
17 "sideEffects": false,
18 "scripts": {
19 "generate:test-coverage": "rm -Rf docs/coverage/ ; NODE_ENV=production BABEL_ENV=test jest --coverage --coverageReporters=pob-lcov-reporter --coverageDirectory=docs/coverage/",
20 "lint": "yarn run lint:prettier && yarn run lint:eslint",
21 "lint:eslint": "eslint --report-unused-disable-directives --quiet *.js lib",
22 "lint:prettier": "prettier --check .",
23 "preversion": "yarn run lint && repository-check-dirty",
24 "release": "repository-check-dirty && yarn preversion && standard-version -a -m 'chore(release): %s [skip ci]' && git push --follow-tags origin master && npm publish",
25 "test": "jest",
26 "test:watch": "jest"
27 },
28 "prettier": {
29 "trailingComma": "all",
30 "singleQuote": true,
31 "arrowParens": "always"
32 },
33 "commitlint": {
34 "extends": [
35 "@pob/commitlint-config"
36 ]
37 },
38 "jest": {
39 "cacheDirectory": "./node_modules/.cache/jest",
40 "testMatch": [
41 "<rootDir>/lib/**/__tests__/**/*.js",
42 "<rootDir>/lib/**/*.test.js"
43 ],
44 "collectCoverageFrom": [
45 "lib/**/*.js"
46 ],
47 "moduleFileExtensions": [
48 "js",
49 "json"
50 ]
51 },
52 "pob": {},
53 "peerDependencies": {
54 "@babel/core": "^7.10.5"
55 },
56 "dependencies": {
57 "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
58 "@babel/plugin-proposal-numeric-separator": "^7.12.13",
59 "@babel/plugin-proposal-optional-catch-binding": "^7.13.8",
60 "@babel/plugin-proposal-optional-chaining": "^7.13.8",
61 "@babel/plugin-proposal-unicode-property-regex": "^7.12.13",
62 "@babel/plugin-syntax-top-level-await": "^7.12.13",
63 "@babel/plugin-transform-modules-commonjs": "^7.13.8"
64 },
65 "devDependencies": {
66 "@babel/core": "7.13.10",
67 "@pob/commitlint-config": "2.0.1",
68 "@pob/eslint-config": "43.0.0",
69 "@pob/eslint-config-node": "43.1.0",
70 "@pob/root": "3.1.1",
71 "@types/jest": "26.0.20",
72 "eslint": "7.22.0",
73 "eslint-import-resolver-node": "0.3.4",
74 "eslint-plugin-import": "2.22.1",
75 "eslint-plugin-node": "11.1.0",
76 "eslint-plugin-unicorn": "25.0.1",
77 "husky": "4.3.8",
78 "jest": "26.6.3",
79 "pob-lcov-reporter": "4.0.1",
80 "prettier": "2.2.1",
81 "standard-version": "9.1.1"
82 }
83}