This repository has been archived by the owner on Mar 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
60 lines (60 loc) · 1.64 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
{
"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"
}
}