forked from esnext/es6-module-transpiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "es6-module-transpiler",
"version": "0.6.2",
"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://square.github.com/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"
},
"author": "Square, Inc.",
"license": "Apache 2",
"dependencies": {
"ast-util": "^0.1.2",
"esprima": "git://github.com/esnext/esprima#harmony-esnext",
"mkdirp": "^0.5.0",
"posix-getopt": "^1.0.0",
"recast": "^0.6.6"
},
"devDependencies": {
"example-runner": "^0.1.0",
"mocha": "^1.20.1"
}
}