UNPKG

1.66 kBJSONView Raw
1{
2 "name": "babel-plugin-component",
3 "version": "0.5.0",
4 "description": "Modular build plugin for babel.",
5 "main": "lib/index.js",
6 "scripts": {
7 "build": "rm -rf lib && babel src --out-dir lib --ignore __tests__",
8 "test": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts",
9 "debug": "mocha --require babel-core/register --require babel-polyfill --no-timeouts",
10 "lint": "eslint --ext .js src",
11 "coveralls": "cat ./coverage/lcov.info | coveralls",
12 "prepublish": "npm run build"
13 },
14 "pre-commit": [
15 "lint"
16 ],
17 "keywords": [
18 "babel-plugin"
19 ],
20 "author": [
21 "chencheng <sorrycc@gmail.com>",
22 "qingwei-li <cinwell.li@gmail.com>"
23 ],
24 "license": "MIT",
25 "devDependencies": {
26 "babel-cli": "^6.3.13",
27 "babel-core": "^6.7.4",
28 "babel-istanbul": "^0.7.0",
29 "babel-plugin-add-module-exports": "^0.1.2",
30 "babel-preset-es2015": "^6.6.0",
31 "babel-preset-react": "^6.5.0",
32 "babel-preset-stage-0": "^6.3.13",
33 "coveralls": "^2.11.6",
34 "eslint": "^2.7.0",
35 "eslint-config-airbnb": "^6.2.0",
36 "expect": "^1.13.4",
37 "mocha": "^2.3.4",
38 "pre-commit": "~1.1.2"
39 },
40 "repository": {
41 "type": "git",
42 "url": "git+https://github.com/qingwei-li/babel-plugin-component.git"
43 },
44 "homepage": "https://github.com/qingwei-li/babel-plugin-component#readme",
45 "bugs": {
46 "url": "https://github.com/qingwei-li/babel-plugin-component/issues"
47 },
48 "babel": {
49 "presets": [
50 "es2015",
51 "stage-0"
52 ],
53 "plugins": [
54 "add-module-exports"
55 ]
56 },
57 "files": [
58 "lib",
59 "package.json",
60 "README.md"
61 ]
62}