forked from Swizz/babel-plugin-transform-magic-currying
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 929 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
{
"name": "babel-plugin-transform-magic-currying",
"version": "0.0.2",
"description": "Babel transform plugin for magic auto currying",
"author": "Quentin Gerodel <[email protected]>",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Swizz/babel-plugin-transform-magic-currying"
},
"keywords": [
"babel",
"babel-plugin",
"magic currying",
"babel transform",
"babel-transform",
"currying",
"curry"
],
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"mocha": "^2.2.5"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"dependencies": {
"babel-template": "^6.16.0"
}
}