-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "tiny-entity",
"version": "0.9.24",
"description": "A simple and easy to use ORM framework, support NEDB, IndexedDB, MySQL and Sqlite and other commonly used database ",
"main": "index.js",
"scripts": {
"test": "npm run test:nedb&&npm run test:mysql&&npm run test:indexedDB",
"test:nedb": "cross-env currentDataBaseType=nedb istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"test:mysql": "cross-env currentDataBaseType=mysql istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"test:indexedDB": "cross-env currentDataBaseType=indexedDB karma start test/karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joinlee/tiny-entity.git"
},
"keywords": [
"tiny",
"nedb",
"sqlite",
"indexedDB",
"mysql"
],
"author": "likecheng",
"license": "ISC",
"bugs": {
"url": "https://github.com/joinlee/tiny-entity/issues"
},
"homepage": "https://github.com/joinlee/tiny-entity#readme",
"dependencies": {
"@types/lodash": "^4.14.52",
"@types/mocha": "^2.2.39",
"mocha": "^3.2.0",
"mysql": "^2.11.1",
"nedb": "*",
"sqlite-sync": "^0.3.5"
},
"devDependencies": {
"@types/node": "^9.4.5"
}
}