-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.8 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
77
78
{
"version": "0.14.0",
"license": "MIT",
"main": "./bin.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"bin": {
"immutable-to-ramda": "./bin.js"
},
"scripts": {
"build": "esbuild --bundle --minify --platform=node --target=node16 ./src/index.ts --outdir=./dist",
"prepare": "ls"
},
"husky": {
"hooks": {}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "immutable-to-ramda",
"author": "Lucas Rangel",
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/plugin-syntax-typescript": "^7.16.7",
"@babel/plugin-transform-typescript": "^7.16.8",
"chalk": "4.1.2",
"commander": "^9.4.1",
"diff": "^5.0.0",
"globby": "^13.1.1",
"ramda": "^0.28.0",
"recast": "^0.22.0",
"signale": "^1.4.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"@types/babel-core": "^6.25.7",
"@types/babylon": "^6.16.6",
"@types/diff": "^5.0.2",
"@types/eslint": "^8.4.1",
"@types/eslint-config-prettier": "^6.11.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^18.11.13",
"@types/prettier": "^2.4.4",
"@types/ramda": "^0.27.64",
"@types/signale": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"esbuild": "^0.16.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"ava": {
"files": [
"tests.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}