-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "crystalline",
"description": "A modern utility library with a strong emphasis on readability. Make your code crystal clear.",
"author": "Amir Sekhavati <amir@sekhaconvalley.com> (https://github.com/sekhavati)",
"version": "0.2.3",
"repository": {
"type": "git",
"url": "https://github.com/sekhavati/crystalline.git"
},
"homepage": "https://github.com/sekhavati/crystalline",
"bugs": "https://github.com/sekhavati/crystalline/issues",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"crystalline",
"fp",
"functional",
"pure",
"readability",
"readable",
"toolkit",
"utility",
"utilities",
"utils"
],
"license": "MIT",
"dependencies": {
"ramda": "^0.27.1"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/ramda": "^0.27.29",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^26.5.0",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist/ coverage/",
"test": "jest",
"lint": "eslint ./src --ext .js,.ts"
}
}