package.json
1 { 2 "name": "babel-preset-current-node-syntax", 3 "version": "1.0.1", 4 "description": "A Babel preset that enables parsing of proposals supported by the current Node.js version.", 5 "main": "src/index.js", 6 "repository": { 7 "type": "git", 8 "url": "https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax.git" 9 }, 10 "author": { 11 "name": "Nicolò Ribaudo", 12 "url": "https://github.com/nicolo-ribaudo" 13 }, 14 "scripts": { 15 "test": "node ./test/index.js", 16 "prepublish": "./scripts/check-yarn-bug.sh" 17 }, 18 "dependencies": { 19 "@babel/plugin-syntax-async-generators": "^7.8.4", 20 "@babel/plugin-syntax-bigint": "^7.8.3", 21 "@babel/plugin-syntax-class-properties": "^7.8.3", 22 "@babel/plugin-syntax-import-meta": "^7.8.3", 23 "@babel/plugin-syntax-json-strings": "^7.8.3", 24 "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", 25 "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 26 "@babel/plugin-syntax-numeric-separator": "^7.8.3", 27 "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 28 "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 29 "@babel/plugin-syntax-optional-chaining": "^7.8.3", 30 "@babel/plugin-syntax-top-level-await": "^7.8.3" 31 }, 32 "peerDependencies": { 33 "@babel/core": "^7.0.0" 34 }, 35 "devDependencies": { 36 "@babel/core": "7.0.0", 37 "@babel/parser-7.0.0": "npm:@babel/parser@7.0.0", 38 "@babel/parser-7.9.0": "npm:@babel/parser@7.9.0" 39 }, 40 "license": "MIT" 41 }