-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 963 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
37
38
39
40
41
42
43
{
"name": "functional.js",
"author": "Lee Crossley <[email protected]> (http://ilee.co.uk/)",
"description": "A functional JavaScript library that facilitates currying and point-free programming, with optional lambda expressions.",
"homepage": "http://functionaljs.com",
"version": "0.8.0",
"main": "functional.js",
"keywords": [
"functional",
"curry",
"arity",
"compose",
"iterator",
"lambda",
"underscore"
],
"contributors": [
{
"name": "Lee Crossley",
"email": "[email protected]"
},
{
"name": "Ryan Roberts",
"email": "[email protected]"
}
],
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "[email protected]:functionaljs/functional-js.git"
},
"engines": {
"node": ">= 0.8.x"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-jasmine": "^2.1.0",
"gulp-jshint": "^2.0.0",
"jshint": "^2.8.0"
}
}