-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "orbit-sql",
"version": "0.4.2",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"description": "SQL support for Orbit.",
"contributors": [
"Paul Chavard <[email protected]>"
],
"keywords": [
"orbit",
"sql",
"knex"
],
"repository": "https://github.com/tchak/orbit-sql",
"license": "MIT",
"dependencies": {
"@orbit/records": "0.17.0-beta.25",
"inflected": "^2.1.0",
"knex": "^0.21.18",
"objection": "^2.2.14"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "qunit --require ts-node/register 'test/**/*-test.ts'",
"lint": "eslint . --ext .ts",
"prepare": "yarn build",
"release": "release-it"
},
"devDependencies": {
"@types/inflected": "^1.1.29",
"@types/node": "^14.14.31",
"@types/qunit": "^2.11.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"qunit": "^2.14.0",
"release-it": "^14.4.1",
"sqlite3": "^5.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": false
}
}
}