-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "babel-plugin-transform-remove-props",
"version": "0.0.1",
"description": "Babel transform to remove selected properties.",
"author": "Wojtek Ruszczewski <babel-remove-props@wr.waw.pl>",
"keywords": ["babel", "plugin", "transform", "minification", "properties"],
"scripts": {
"build": "babel main.jsx -o dist/main.es5.js",
"test": "eslint . --ext=js --ext=jsx && mocha --ui tdd tests",
"prepublish": "npm run build && npm test"
},
"main": "dist/main.es5.js",
"main:es5": "dist/main.es5.js",
"main:es6": "dist/main.es6.js",
"main:es7": "main.jsx",
"dependencies": {
"babel-generator": "^6.5.0",
"debug": "^2.2.0",
"side-effects-safe": "^0.0.1"
},
"peerDependencies": {
"babel-cli": "^6.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/wrwrwr/babel-remove-props"
},
"bugs": {
"url": "https://github.com/wrwrwr/babel-remove-props/issues"
},
"license": "MIT"
}