-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "@burdaforward/composable-rules",
"version": "2.0.0",
"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.umd.js",
"module": "./dist/index.module.js",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"scripts": {
"build": "microbundle src/index.js",
"lint": "eslint src",
"test": "NODE_OPTIONS=--experimental-vm-modules jest src",
"prepublishOnly": "npm run build"
},
"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": {
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"microbundle": "^0.15.0",
"prettier": "^2.3.2"
}
}