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{
"name": "fpo",
"version": "4.0.1",
"description": "FP library for JavaScript. Supports named-argument style methods.",
"main": "./dist/fpo.js",
"scripts": {
"test": "node scripts/node-tests.js",
"test:dist": "TEST_DIST=true npm test",
"test:package": "TEST_PACKAGE=true npm test",
"test:all": "npm test && npm run test:dist && npm run test:package",
"build-core": "node scripts/build-core.js",
"build": "npm run build-core",
"prepublish": "npm run build-core && npm run test:all"
},
"devDependencies": {
"coveralls": "~2.12.0",
"qunitjs": "~2.1.1"
},
"repository": {
"type": "git",
"url": "git://github.com/getify/fpo.git"
},
"keywords": [
"fp",
"functional programming"
],
"bugs": {
"url": "https://github.com/getify/fpo/issues",
"email": "getify@gmail.com"
},
"homepage": "http://github.com/getify/fpo",
"author": "Kyle Simpson <getify@gmail.com>",
"license": "MIT"
}