-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 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
{
"name": "babel-plugin-compact-reexports",
"version": "1.1.0",
"description": "A Babel plugin to make re-export modules more compact",
"main": "lib/index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc qunit tests/*-test.js",
"test:debug": "node debug ./node_modules/.bin/qunit tests/*-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-engines/babel-plugin-compact-reexports.git"
},
"keywords": [
"babel-plugin",
"amd",
"ember"
],
"author": "Trent Willis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ember-engines/babel-plugin-compact-reexports/issues"
},
"homepage": "https://github.com/ember-engines/babel-plugin-compact-reexports#readme",
"devDependencies": {
"amd-name-resolver": "^0.0.6",
"babel-core": "^6.7.4",
"babel-plugin-transform-es2015-modules-amd": "^6.24.0",
"coveralls": "^2.13.1",
"loader.js": "^4.4.0",
"nyc": "^10.3.0",
"qunit-eslint": "^1.0.0",
"qunitjs": "^2.4.1"
}
}