-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 1.07 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
{
"version": "0.0.2",
"name": "babel-plugin-overload",
"description": "Operator overloading plugin for babel",
"repository": "foxbenjaminfox/babel-plugin-overload",
"author": "Benjamin Fox <[email protected]>",
"license": "Apache-2.0",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"postbuild": "npm run test",
"prepublish": "npm run clean && npm run build",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"keywords": [
"operator",
"overload",
"operator-overloading",
"babel-plugin"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.22.0",
"babel-template": "^6.16.0",
"mocha": "^2.2.5"
}
}