-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
{
"name": "sworm",
"version": "3.8.1",
"description": "a lightweight write-only ORM for MSSQL, MySQL, PostgreSQL, Oracle, Sqlite 3",
"main": "index.js",
"dependencies": {
"cooperative": "1.1.1",
"debug": "^4.1.1",
"randomstring": "1.1.5",
"underscore": "^1.9.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^4.0.2",
"electron-mocha": "^6.0.4",
"electron-rebuild": "^1.8.2",
"es6-promise": "^4.2.5",
"eslint-plugin-es5": "^1.3.1",
"fs-promise": "^2.0.3",
"mocha": "^5.2.0",
"mssql": "^4.3.0",
"mysql": "^2.16.0",
"object-keys": "^1.0.12",
"pg": "^7.8.0",
"sqlite3": "^4.0.6"
},
"scripts": {
"test": "mocha --exit && npm run test-websql",
"test-websql": "electron-mocha --renderer test/browser",
"test-oracledb": "mocha test/oracleSpec.js",
"test-mysql": "mocha test/mysqlSpec.js",
"test-postgres": "mocha test/postgresSpec.js",
"test-mssql": "mocha test/mssqlSpec.js",
"test-sqlite": "mocha test/sqliteSpec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/featurist/sworm.git"
},
"keywords": [
"activerecord",
"database",
"postgres",
"postgresql",
"mysql",
"orm",
"mssql",
"sqlserver",
"sql",
"server"
],
"author": "Tim Macfarlane <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/featurist/sworm/issues"
},
"homepage": "https://github.com/featurist/sworm"
}