-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.23 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": "part",
"description": "This micro library encourages functional programming by making native methods available as partially applied functions.",
"keywords": [
"functional",
"curry",
"partial",
"application"
],
"homepage": "https://github.com/AutoSponge/_part_",
"version": "0.1.1",
"repository": {
"type" : "git",
"url": "https://github.com/AutoSponge/_part_"
},
"bugs": { "url" : "https://github.com/AutoSponge/_part_/issues",
"email" : "[email protected]"
},
"license": "MIT",
"author": { "name" : "Paul Grenier",
"email" : "[email protected]",
"url" : "http://autosponge.github.io/"
},
"files": [
"src",
"build",
"test",
"Gruntfile.js",
"LICENSE",
"README.md"
],
"main": "./build/src/part",
"engines": {
"node" : "*"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.3",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-uglify": "~0.2.2",
"grunt-traceur": "~0.0.1",
"load-grunt-tasks": "~0.2.0",
"jshint-stylish": "~0.1.3",
"grunt-docco": "~0.3.0"
}
}