-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.47 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
{
"name": "relational-algebra-evaluator",
"version": "1.0.3",
"description": "Relational Algebra Evaluator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"author": {
"name": "Maneksh M S",
"email": "manekshms@gmail.com",
"url": "http://manekshms.com"
},
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc --declaration",
"dev": "yarn build --watch --preserveWatchOutput",
"lint": "eslint src --ext js,ts",
"test": "jest"
},
"volta": {
"node": "14.17.1",
"yarn": "1.22.10"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel": "^6.23.0",
"babel-jest": "^27.0.6",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.4"
},
"dependencies": {
"@types/uuid": "^8.3.0",
"lodash": "^4.17.21",
"moments": "^0.0.2",
"uuid": "^8.3.2"
},
"keywords": [
"relational algebra",
"relational algebra evaluator",
"evaluator"
],
"repository": {
"type": "git",
"url": "https://github.com/manekshms/relational-algebra-evaluator"
}
}