-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "yatlas",
"version": "1.0.2",
"type": "module",
"description": "This is funtion programing utils",
"module": "lib/index.esm.js",
"browser": "lib/dist.umd.js",
"main": "src/index.js",
"scripts": {
"dev": "",
"build": "rollup -c",
"test": "jest",
"format": "prettier src/** --write",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@types/jest": "^29.5.11",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"prettier": "3.2.2",
"rollup": "^4.9.5",
"ts-node": "^10.9.2"
},
"keywords": [
"fp",
"utils"
],
"author": "DreamerKing",
"repository": {
"type": "git",
"url": "git+https://github.com/DreamerKing/fp.git"
},
"bugs": {
"url": "https://github.com/DreamerKing/fp.git/issues"
},
"homepage": "https://github.com/DreamerKing/fp.git#readme",
"license": "MIT"
}