-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 783 Bytes
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
{
"name": "logic-tree",
"version": "0.2.3",
"description": "Build a JSON object from a logic expression string",
"repository": "github:ivanrave/logic-tree",
"keywords": [
"logic",
"expression",
"parser",
"tree"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --ext .ts src"
},
"author": "Ivan Reyvart",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/ramda": "^0.27.45",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"jest": "^27.2.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"ramda": "^0.27.1"
}
}