-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "contexture",
"version": "0.12.24",
"description": "The Contexture (aka ContextTree) Server",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": {
"import": "./dist/esm/*",
"require": "./dist/cjs/*"
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "node ../../scripts/esbuild.js --platform=node",
"test": "yarn run -T test --project server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/contexture.git"
},
"keywords": [
"search",
"data-context"
],
"author": "Samuel Greene",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprocure/contexture/issues"
},
"homepage": "https://github.com/smartprocure/contexture/tree/main/packages/server",
"dependencies": {
"contexture-util": "^0.1.2",
"date-fns": "^2.11.1",
"futil": "^1.76.4",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28"
},
"devDependencies": {
"mockdate": "^3.0.5"
},
"packageManager": "[email protected]"
}