-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 944 Bytes
/
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
{
"name": "tamda",
"version": "1.0.6",
"description": "Practical functional programming library for TypeScript",
"author": "Andre Luiz Rabello <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rabelloo/tamda.git"
},
"bugs": {
"url": "https://github.com/rabelloo/tamda/issues"
},
"homepage": "https://github.com/rabelloo/tamda#readme",
"keywords": [
"typescript",
"functional",
"programming",
"fp",
"ramda",
"lodash",
"underscore",
"ts-fp"
],
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "jest --coverage",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}