-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "match-rules",
"version": "1.3.8",
"description": "A tiny (1kB GZipped) zero dependency JavaScript utility that lets you write your conditional business logic in a declarative way (React like).",
"main": "lib/match_rules.js",
"repository": {
"type": "git",
"url": "https://github.com/naman03malhotra/match-rules"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/naman03malhotra/match-rules/issues"
},
"keywords": [
"javascript",
"declarative",
"imperative",
"react",
"react-like",
"react-rendering",
"tiny",
"zero dependency",
"if-else",
"react-conditional-rendering",
"conditional-rendering",
"feature-flag",
"rules",
"matchrules",
"match-rules",
"complex-conditions",
"render-ui-based-on-flags",
"dynamic-rendering"
],
"files": [
"lib"
],
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "rm -rf lib && babel src -d lib"
},
"author": "Naman Malhotra",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/preset-env": "7.9.6",
"jest": "26.0.1"
}
}