-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "es6-module-crosspiler",
"description": "An ES6 and CommonJS cross-compatible transpiler",
"version": "2.0.1",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": "polyfills/es6-module-crosspiler",
"dependencies": {
"ast-util": "0",
"debug": "*",
"esprima-fb": "*",
"memorizer": "1",
"recast": "0"
},
"devDependencies": {
"mocha": "2",
"istanbul": "0"
},
"scripts": {
"bench": "DEBUG=*:profile node benchmark/mocha.js",
"test": "mocha --reporter spec --bail test/index.js",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/index.js",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/index.js"
},
"keywords": [
"es6",
"module",
"transpiler",
"crosspiler",
"cjs",
"commonjs"
],
"main": "lib",
"files": [
"lib"
]
}