-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "param.macro",
"version": "3.2.1",
"description": "Partial application syntax and lambda parameters for JavaScript, inspired by Scala's `_` & Kotlin's `it`",
"author": "Bo Lingen <[email protected]> (https://github.com/citycide)",
"license": "MIT",
"repository": "https://github.com/citycide/param.macro",
"homepage": "https://github.com/citycide/param.macro/tree/master/docs",
"bugs": "https://github.com/citycide/param.macro/issues",
"main": "./dist/index.js",
"engines": {
"node": ">=6"
},
"keywords": [
"babel-plugin-macros",
"babel-macros",
"macro",
"functional",
"partial",
"application",
"curry",
"scala",
"kotlin",
"template",
"placeholder",
"lambda"
],
"files": [
"dist",
"plugin.js"
],
"scripts": {
"build": "babel src -d dist",
"setup": "trash macro && cpy \"dist/\" \"macro/\"",
"pretest": "npm run build && npm run setup",
"test": "ava",
"prepublishOnly": "npm test"
},
"dependencies": {
"babel-plugin-macros": "^2.6.1"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"ava": "^1.4.1",
"babel-core": "^6.26.3",
"cpy-cli": "^2.0.0",
"dedent": "^0.7.0",
"param.macro": "^3.2.0",
"trash-cli": "^1.4.0"
}
}