-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1000 Bytes
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
{
"name": "pfa",
"version": "1.1.0",
"description": "Crazy-simple Partial Function Application library",
"main": "source/index.js",
"scripts": {
"docs": "jsdoc2md source/**/*.js > API.md",
"pub": "np",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint source/**/*.js test/**/*.spec.js",
"test:unit": "mocha -r test/index.js test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/pfa.git"
},
"keywords": [
"partial",
"application",
"curry",
"partial",
"function",
"wrap"
],
"author": "Perry Mitchell <perry@perrymitchell.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/pfa/issues"
},
"homepage": "https://github.com/perry-mitchell/pfa#readme",
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^4.18.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.0.1",
"np": "^2.20.1",
"sinon": "^4.3.0"
}
}