UNPKG

es6-module-transpiler

Version:

es6-module-transpiler is an experimental compiler that allows you to write your JavaScript using a subset of the current ES6 module syntax, and compile it into various formats.

60 lines 1.68 kB
{ "name": "es6-module-transpiler", "version": "0.10.0", "description": "es6-module-transpiler is an experimental compiler that allows you to write your JavaScript using a subset of the current ES6 module syntax, and compile it into various formats.", "homepage": "http://esnext.github.io/es6-module-transpiler", "keywords": [ "es6", "module", "transpile", "amd", "commonjs" ], "bugs": "https://github.com/square/es6-module-transpiler/issues", "bin": { "compile-modules": "./bin/compile-modules" }, "files": [ "bin", "lib", "LICENSE", "README.md" ], "directories": { "lib": "./lib", "test": "test" }, "main": "lib/index.js", "repository": { "type": "git", "url": "https://github.com/square/es6-module-transpiler.git" }, "scripts": { "test": "npm run test-bundle && npm run test-commonjs && npm run test-unit", "test-bundle": "node test/runner.js -f bundle", "test-commonjs": "node test/runner.js -f commonjs", "test-unit": "mocha -R spec test/unit", "build-standalone": "browserify -s ModuleTranspiler -e lib/index.js -o es6-module-transpiler.js" }, "author": "Square, Inc.", "license": "Apache-2.0", "dependencies": { "ast-util": "^0.5.1", "esprima-fb": "^7001.1.0-dev-harmony-fb", "posix-getopt": "^1.0.0", "recast": "^0.9.5", "reserved": "^0.1.2" }, "devDependencies": { "browserify": "^6.3.2", "es6-class": "^0.9.2", "example-runner": "^0.2.0", "fake-fs": "^0.5.0", "mocha": "^2.0.1", "tmp": "0.0.24" }, "browser": { "fs": "./lib/browser/fs.js", "./lib/index.js": "./lib/browser/index.js" } }