-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "functional.js",
"author": "Lee Crossley <[email protected]> (http://ilee.co.uk/)",
"description": "functional.js is (go on, guess) a functional js library. It facilitates currying and point-free / tacit programming in JavaScript. Minified version here: http://bit.ly/funcmin",
"version": "0.1.8",
"main": "functional.min.js",
"keywords": [
"functional",
"functionaljs",
"functional js",
"functional-js",
"lambda",
"λ",
"array",
"underscore"
],
"contributors": [
{
"name": "Lee Crossley",
"email": "[email protected]"
},
{
"name": "Ryan Roberts",
"email": "[email protected]"
}
],
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "[email protected]:leecrossley/functional-js.git"
},
"engines": {
"node": ">= 0.8.x"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-shell": "~0.3.1",
"grunt-contrib-watch": "~0.5.1",
"grunt-contrib-jshint": "~0.6.2",
"grunt-contrib-jasmine": "~0.5.1",
"grunt-contrib-uglify": "~0.2.2",
"grunt-cli": "~0.1.9"
}
}