-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.16 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
47
48
49
50
51
52
{
"version": "0.0.6",
"name": "pampy",
"main": "lib/pampy.js",
"homepage": "https://github.com/santinic/pampy.js",
"description": "Pattern Matching library for functional programming in JavaScript",
"author": {
"name": "Claudio Santini",
"email": "[email protected] ",
"url": "https://www.linkedin.com/in/santinic"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/santinic/pampy.js"
},
"files": [
"/lib",
"LICENSE",
"README.md"
],
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0"
},
"scripts": {
"test": "mocha tests",
"coverage": "node_modules/nyc/bin/nyc.js report npm test",
"coveralls": "node_modules/nyc/bin/nyc.js report --reporter=text-lcov npm test | coveralls"
},
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true,
"keywords": [
"pattern matching",
"pattern",
"functional programming",
"functional",
"match",
"lisp",
"fibonacci",
"recursive",
"recursion",
"haskell",
"scala"
]
}