-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
110 lines (110 loc) · 2.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "bookbrainz-data",
"version": "5.2.0",
"description": "A JavaScript data access module for BookBrainz",
"main": "lib/index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rimraf lib/* && babel src --out-dir lib --extensions .js,.ts && tsc",
"build-js-for-test": "rimraf lib/* && babel src --out-dir lib --source-maps inline --extensions .js,.ts",
"lint": "eslint .",
"lint-errors": "eslint --quiet .",
"lint-staged": "lint-staged",
"prepublishOnly": "yarn build",
"test": "yarn build-js-for-test && yarn lint-errors && mocha",
"test-with-report": "mocha --reporter json --reporter-option output=coverage/test-results.json",
"test-ci": "yarn build-js-for-test && yarn lint-errors && yarn test-with-report",
"dupreport": "jsinspect src/ || true",
"nodemon": "nodemon --watch './src/' --exec 'yarn build'",
"prepare": "husky install"
},
"files": [
"lib/**/*"
],
"lint-staged": {
"*.js": [
"eslint"
],
"*.ts": [
"eslint"
]
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/bookbrainz/bookbrainz-data-js.git"
},
"keywords": [
"orm"
],
"author": "Ben Ockmore",
"contributors": [
{
"name": "Ben Ockmore",
"email": "[email protected]"
},
{
"name": "Sean Burke",
"email": "[email protected]"
},
{
"name": "Nicolas Pelletier",
"email": "[email protected]"
}
],
"engines": {
"node": ">= 18.0"
},
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/bookbrainz/bookbrainz-data-js/issues"
},
"homepage": "https://github.com/bookbrainz/bookbrainz-data-js",
"dependencies": {
"@metabrainz/bookshelf": "^1.4.0",
"bookshelf-virtuals-plugin": "^1.0.0",
"deep-diff": "^1.0.2",
"immutable": "^3.8.2",
"knex": "^2.4.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"pg": "^8.6.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@types/bluebird": "^3.5.41",
"@types/lodash": "^4.14.168",
"@types/node": "^18.11.18",
"@types/pg": "^8.6.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^8.32.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"faker": "^4.1.0",
"glob": "^7.1.2",
"husky": "^8.0.0",
"jsinspect": "^0.12.7",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"node-uuid": "^1.4.8",
"nodemon": "^2.0.4",
"path": "^0.12.7",
"rimraf": "^3.0.0",
"typescript": "^4.2.4"
}
}