forked from megawac/babel-plugin-ramda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 759 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 759 Bytes
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
{
"name": "babel-plugin-ramda",
"version": "2.0.0",
"description": "Ramda modularized builds without the hassle",
"repository": "megawac/babel-plugin-ramda",
"author": "Graeme Yeates (github.com/megawac) <megawac@gmail.com>",
"main": "lib/index.js",
"license": "WTFPL",
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/preset-env": "7.1.0",
"@babel/register": "7.0.0",
"mocha": "^2.2.5",
"ramda": "^0.25.0"
},
"dependencies": {
"@babel/helper-module-imports": "^7.0.0",
"ramda": "*"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "mocha --require @babel/register"
},
"keywords": [
"ramda",
"modularize",
"babel-plugin"
]
}