This repository was archived by the owner on Jan 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.48 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.48 KB
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
56
57
58
59
60
61
62
63
64
{
"name": "babel-plugin-partial-application",
"version": "1.6.2",
"description": "Partial application syntax for JavaScript, inspired by Scala & Kotlin.",
"author": {
"name": "Bo Lingen",
"email": "thecitycide@gmail.com",
"url": "github.com/citycide"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/citycide/babel-plugin-partial-application.git"
},
"homepage": "https://github.com/citycide/babel-plugin-partial-application",
"bugs": "https://github.com/citycide/babel-plugin-partial-application/issues",
"engines": {
"node": ">=4"
},
"keywords": [
"babel-plugin",
"functional",
"partial",
"application",
"currying",
"curried",
"scala",
"kotlin",
"template",
"placeholder"
],
"files": [
"index.js"
],
"scripts": {
"build": "babel src -d . -x .lsc",
"pretest": "npm run build",
"test": "ava",
"prepublish": "npm test"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-lightscript": "^0.5.9",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"lodash.get": "^4.4.2",
"lodash.map": "^4.6.0",
"pify": "^3.0.0"
},
"ava": {
"files": [
"tests/*.js"
],
"babel": "inherit",
"require": [
"babel-polyfill"
]
}
}