-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 828 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 828 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": "lemonad",
"version": "0.8.0-alpha.0",
"description": "JavaScript functional programming library, inspired by the Clojure, ML, Haskell and Forth.",
"homepage": "http://www.fogus.me/",
"contributors": [
"Fogus <me@fogus.me> (<https://www.fogus.me>)"
],
"scripts": {
"test": "jest"
},
"main": "./lib/lemonad",
"keywords": [
"functional programming"
],
"license": "MIT",
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/fogus/lemonad.git"
},
"dependencies": {
"immutable": "4.0.0-rc.12"
},
"devDependencies": {
"jest": "^29.6.1"
},
"jest": {
"testMatch": [
"<rootDir>/test/specs/**/*.spec.js"
],
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/test/jest.setup.js"
]
}
}