-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 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
{
"name": "@agrejus/db-framework",
"version": "1.1.1",
"description": "JavaScript Data Interaction Layer modeled after .NET Entity Framework",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"scripts": {
"test": "jest --runInBand --silent --no-cache",
"build": "npm run clean && tsc",
"build:ci": "tsc",
"clean": "./node_modules/.bin/rimraf ./dist/*",
"performance": "ts-node ./performance/tests/performance.ts",
"test-grounds": "ts-node ./performance/tests/testing-grounds.ts"
},
"author": "James DeMeuse <james.demeuse@gmail.com>",
"license": "MIT",
"repository": "Agrejus/db-framework",
"keywords": [
"orm",
"typescript",
"web",
"indexeddb",
"electron",
"data access layer",
"entities",
"entity framework",
"database"
],
"files": [
"dist"
],
"devDependencies": {
"@agrejus/db-framework-plugin-pouchdb": "file:./plugins/pouchdb",
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.17.12",
"@faker-js/faker": "^7.1.0",
"@jest/types": "^28.1.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/pouchdb": "^6.4.2",
"@types/uuid": "^8.3.4",
"babel-jest": "^28.1.0",
"cross-env": "^7.0.3",
"directory-tree": "^3.3.0",
"jest": "^28.1.0",
"pouchdb": "^8.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0",
"typescript": "5.0.2"
},
"dependencies": {
"uuid": "^8.3.2"
}
}