-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
{
"name": "teep",
"description": "A JavaScript library for functional programming.",
"version": "1.5.1",
"homepage": "https://github.com/earldouglas/teep",
"author": {
"name": "James Earl Douglas",
"email": "[email protected]",
"url": "http://earldouglas.com"
},
"repository": {
"type": "git",
"url": "git://github.com/earldouglas/teep.git"
},
"bugs": {
"url": "https://github.com/earldouglas/teep/issues"
},
"license": "MIT",
"main": "teep",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"build": "tsc src/teep.ts --outDir .",
"test": "jshint . --exclude node_modules && mocha",
"coverage": "istanbul cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"jshintConfig": {
"node": true,
"globals": {
"Promise": false,
"describe": false,
"it": false
}
},
"devDependencies": {
"coveralls": "^3.1.1",
"istanbul": "^0.4.5",
"jshint": "^2.13.6",
"mocha": "^10.3.0",
"mocha-lcov-reporter": "0.0.1",
"typescript": "2.9"
},
"keywords": [
"functional",
"immutable",
"lazy",
"referential transparency"
]
}