-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "@jjmyers/object-relationship-store",
"version": "3.3.5",
"description": "A javascript object relationship store.",
"main": "build/index.js",
"module": "build/index.esm.js",
"types": "build",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoshBot-Debug/object-relationship-store.git"
},
"scripts": {
"test": "jest --watchAll",
"index": "npx tsx --watch src/index.ts",
"build": "rm -r ./build & rm jjmyers-object-relationship-*.tgz & rollup -c --bundleConfigAsCjs && cp lib/types.d.ts build && npm pack"
},
"files": [
"build/*"
],
"keywords": [
"object relationship store",
"store",
"object store",
"object database",
"external store"
],
"author": "Joshua Joseph Myers",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"i": "^0.3.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2"
}
}