-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "es6-module-transpiler-system-formatter",
"version": "0.3.0",
"description": "ES6 Module Transpiler Extension to Output System.register() Format.",
"author": "Caridy Patino <caridy@gmail.com>",
"homepage": "https://github.com/caridy/es6-module-transpiler-system-formatter",
"keywords": [
"es6",
"module",
"transpiler",
"system",
"module-formatter"
],
"bugs": "https://github.com/caridy/es6-module-transpiler-system-formatter/issues",
"main": "index.js",
"files": ["lib/", "index.js"],
"repository": {
"type": "git",
"url": "https://github.com/caridy/es6-module-transpiler-system-formatter.git"
},
"license": "MIT",
"dependencies": {
"recast": "~0.9.0"
},
"devDependencies": {
"es6-module-transpiler": "^0.10.0",
"chai": "~1.8.1",
"mocha": "~1.15.1",
"xunit-file": "*",
"istanbul": "~0.1.46",
"es6-micro-loader": "~0.2.0"
},
"scripts": {
"pretest": "./node_modules/.bin/compile-modules convert -f ../../../../index.js test/**/*.js -o ./build",
"test": "_mocha test/formatter --reporter spec"
}
}