-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 963 Bytes
/
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": "babel-plugin-operator-overload",
"version": "2.0.0",
"description": "Babel plugin for overloading operators",
"repository": {
"type": "git",
"url": "git://github.com/jussi-kalliokoski/babel-plugin-operator-overload.git"
},
"author": "Jussi Kalliokoski <[email protected]> (http://juss.in)",
"license": "ISC",
"bugs": {
"url": "https://github.com/jussi-kalliokoski/babel-plugin-operator-overload/issues"
},
"homepage": "https://github.com/jussi-kalliokoski/babel-plugin-operator-overload",
"keywords": [
"babel-plugin",
"babel",
"plugin"
],
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"prepublish": "babel -o index.js src/index.js",
"test": "mocha test/spec"
},
"peerDependencies": {
"babel-core": "^6.5.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"expect.js": "^0.3.1",
"mocha": "^2.4.5"
}
}