forked from sodiray/radash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "radash",
"version": "12.2.0",
"description": "Functional utility library - modern, simple, typed, powerful",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"sideEffects": false,
"files": [
"dist"
],
"repository": {
"url": "https://github.com/rayepps/radash"
},
"author": "rayepps",
"private": false,
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"check": "yarn lint && yarn test && yarn build",
"build": "yarn tsc --noEmit && yarn rollup -c",
"docs:install": "yarn && yarn add --dev [email protected]",
"docs:build": "chiller build --ci",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" --ignore-unknown"
},
"devDependencies": {
"@rollup/plugin-typescript": "^10.0.1",
"@types/chai": "^4.3.3",
"@types/jest": "^28.1.1",
"chai": "^4.3.6",
"chiller": "^1.0.0-rc.30",
"esbuild": "^0.16.3",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.3",
"rollup": "^3.2.5",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-node-externals": "^5.0.2",
"ts-jest": "^28.0.8",
"tslint": "^6.0.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14.18.0"
}
}