-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 KB
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
{
"name": "@burdaforward/composable-rules",
"version": "3.0.1",
"description": "A library for composable rule logic. Easily combine simple rules into more complex ones in a maintainable way using your custom logic and data.",
"main": "./dist/index.cjs",
"unpkg": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify --clean",
"release": "npm run build && npm publish",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"type-check": "tsc --noEmit",
"test": "jest src",
"prepublishOnly": "npm run build",
"compile": "tsc"
},
"files": [
"dist/"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/burdaforward/composable-rules.git"
},
"keywords": [
"rules",
"javascript",
"business",
"logic"
],
"author": "BurdaForward",
"license": "ISC",
"bugs": {
"url": "https://github.com/burdaforward/composable-rules/issues"
},
"homepage": "https://github.com/burdaforward/composable-rules#readme",
"devDependencies": {
"@types/jest": "^29.4.1",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.0.1",
"typescript": "^4.9.5"
}
}