forked from megawac/babel-plugin-ramda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 809 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
{
"name": "babel-plugin-ramda",
"version": "1.4.3",
"description": "Ramda modularized builds without the hassle",
"repository": "megawac/babel-plugin-ramda",
"author": "Graeme Yeates (github.com/megawac) <[email protected]>",
"main": "lib/index.js",
"license": "WTFPL",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.16.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-3": "^6.24.1",
"mocha": "^2.2.5",
"ramda": "^0.23.0"
},
"dependencies": {
"ramda": "0.x"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "mocha --compilers js:babel-core/register"
},
"keywords": [
"ramda",
"modularize",
"babel-plugin"
],
"babel": {
"presets": [
"es2015",
"stage-3"
]
}
}