-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 917 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 917 Bytes
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
{
"name": "ormapper",
"version": "1.0.0",
"description": "TypeScript ORMapper for SQLite",
"main": "index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start:dev": "nodemon",
"start": "npm run build && node build/index.js",
"test": "mocha -r ts-node/register src/tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^12.7.2",
"chai": "^4.2.0",
"i": "^0.3.6",
"mocha": "^8.2.1",
"nodemon": "^1.19.1",
"nyc": "^15.1.0",
"onchange": "^6.1.0",
"rimraf": "^3.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.6.2",
"typescriptnpm": "^1.0.1"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"sqlite": "^4.0.14",
"sqlite3": "^5.0.0"
}
}