-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 978 Bytes
/
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
{
"name": "json-based-conditions-and-rules-logic-evaluator",
"version": "1.0.2",
"description": "script that parses some customizable conditions and rules, then outputs a predefined value of that matching rule, or a default value",
"keywords": [
"JSON",
"Node",
"Javascript",
"Conditions",
"Rules",
"Parser",
"Logic"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:zigotica/json-based-conditions-and-rules-logic-evaluator"
},
"author": "Sergi Meseguer <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint ./ --ext .js",
"test": "mocha --recursive ./src/**/*.spec.js --exclude node_modules/**/*.spec.js"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4",
"mocha": "^9.1.3"
}
}