-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
104 lines (104 loc) · 3.02 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@fxts/core",
"version": "1.3.0",
"description": "A functional library for TypeScript/JavaScript programmers.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"types": "dist/types/index.d.ts",
"typesVersions": {
">= 4.2": {
"*": [
"dist/types/index.d.ts"
]
}
},
"files": [
"LICENSE",
"tsconfig*.json",
"dist/"
],
"scripts": {
"build": "npm-run-all cleanup compile webpack generate:extensions generate:exports",
"cleanup": "rm -rf dist/cjs/types/ dist/esm/types/ dist/esm5/types/ && prettier --write package.json",
"compile:types": "tsc --project tsconfig.types.json ",
"compile:cjs": "tsc --project tsconfig.cjs.json",
"compile:esm5": "tsc --project tsconfig.esm5.json",
"compile:esm": "tsc --project tsconfig.esm.json",
"compile": "npm-run-all -p compile:cjs compile:esm compile:esm5 -s compile:types",
"compile:check": "tsc --project tsconfig.json",
"generate:extensions": "ts-node build/generateExtensions.ts",
"generate:exports": "ts-node build/generateExports.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prettier": "npx prettier --config .prettierrc --check .",
"prettier:fix": "npx prettier --config .prettierrc --write .",
"release": "npx np --no-tests --no-publish --no-release-draft --message 'v%s'",
"test": "jest",
"test:coverage": "jest --coverage",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/marpple/FxTS.git"
},
"keywords": [
"fp",
"lazy",
"concurrency"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/marpple/FxTS/issues"
},
"homepage": "https://fxts.dev",
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime-corejs3": "^7.22.5",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-loader": "^9.1.2",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"glob": "^10.3.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"tslib": "^2.6.0"
},
"lint-staged": {
"*.(js|ts)": [
"eslint",
"prettier --write",
"git add"
],
"*.(json|md)": [
"prettier --write",
"git add"
]
},
"unpkg": "dist/",
"jsdelivr": "dist/"
}