-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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": "javascript-orm-mapper",
"version": "0.0.9",
"description": "Javascript orm mapper",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"deploy": "npm run build && npm run test",
"test": "mocha -r ts-node/register $(find tests -name '*.ts') --recursive",
"test:coverage": "nyc --reporter=html npm run test"
},
"keywords": [
"orm",
"mongo",
"mongodb",
"mysql",
"mariadb",
"postgresql",
"sqlite",
"sqlite3",
"ts",
"typescript",
"js",
"javascript",
"entity",
"javascript-orm-mapper",
"data-mapper",
"identity-map",
"vue",
"vuex",
"nuxt"
],
"author": "Karol Krupa ([email protected])",
"license": "MIT",
"dependencies": {
"chai": "^4.2.0",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"vuex": "^3.5.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"nyc": "^15.1.0"
},
"repository": "https://github.com/karolkrupa/javascript-orm-mapper"
}