-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
76 lines (76 loc) · 1.57 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "types-ramda",
"version": "0.30.1",
"description": "Dedicated types library for ramda",
"author": "Harris Miller <[email protected]>",
"contributors": [
{
"name": "Harris Miller",
"email": "[email protected]",
"web": "https://github.com/harris-miller"
}
],
"repository": {
"type": "git",
"url": "git://github.com/ramda/types.git"
},
"license": "MIT",
"keywords": [
"ramda",
"functional",
"utils",
"utilities",
"toolkit",
"fp",
"tacit",
"point-free",
"curried",
"pure",
"fantasy-land",
"typescript",
"types",
"ts",
"@types/ramda"
],
"sideEffects": false,
"files": [
"es",
"src",
"ts4"
],
"types": "./es/index.d.ts",
"typesVersions": {
"<5": {
"*": [
"ts4/*"
]
}
},
"scripts": {
"build": "npm run build:types && npm run build:ts4",
"build:types": "node scripts/buildTypes.mjs",
"build:ts4": "node scripts/buildTs4.mjs",
"clean": "rimraf es ts4",
"lint": "eslint . --max-warnings=0",
"test": "tsd",
"typecheck": "tsc -p tsconfig.types.json --noEmit"
},
"tsd": {
"directory": "test/"
},
"dependencies": {
"ts-toolbelt": "^9.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"dox": "^1.0.0",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.28.1",
"ramda": "^0.30.1",
"rimraf": "^5.0.5",
"tsd": "^0.31.0",
"typescript": "^5.2.2",
"xyz": "^4.0.0"
}
}