-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.04 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
61
62
63
64
65
66
67
{
"name": "babel-plugin-namespace",
"version": "0.2.3",
"description": "Babel plugin to enable namespace in require() and ES6 import",
"main": "lib/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "eslint src tests",
"compile": "babel src --out-dir lib",
"coverage": "nyc report --reporter=text-lcov",
"coverage:html": "nyc report --reporter=html",
"coverage:upload": "npm run coverage | coveralls",
"prepublish": "npm run compile",
"pretest": "npm run lint",
"test": "npm run test:unit",
"test:debug": "DEBUG=babel:plugin:* npm run test",
"test:unit": "nyc --exclude=tests mocha --opts tests/mocha.opts tests",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yudhasetiawan/babel-plugin-namespace.git"
},
"keywords": [
"babel",
"babel-plugin",
"namespace"
],
"author": {
"name": "Yudha Setiawan",
"email": "[email protected]",
"url": "http://yudhasetiawan.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yudhasetiawan/babel-plugin-namespace/issues"
},
"homepage": "https://github.com/yudhasetiawan/babel-plugin-namespace#readme",
"dependencies": {
"app-root-path": "^1.0.0",
"debug": "^2.2.0",
"lodash": "^4.11.2",
"babel-runtime": "^6.6.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.10.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.6.1",
"mocha": "^2.4.5",
"nyc": "^6.4.4",
"semantic-release": "^4.3.5"
}
}