-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.41 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
{
"name": "bookshelf-processor-plugin",
"version": "2.0.0",
"description": "A plugin for Bookshelf that allows defining custom processor functions that transform model attributes.",
"main": "index.js",
"scripts": {
"lint:fix": "prettier --write 'index.js' 'test/**/*.js'",
"lint": "eslint index.js test/",
"pretest": "npm run lint",
"test": "nyc mocha --check-leaks -t 10000"
},
"homepage": "https://github.com/bookshelf/processor-plugin",
"repository": {
"type": "git",
"url": "https://github.com/bookshelf/processor-plugin.git"
},
"keywords": [
"orm",
"plugin",
"bookshelf"
],
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"nyc": {
"exclude": [
"test/*"
],
"reporter": [
"html",
"text-summary"
]
},
"devDependencies": {
"bookshelf": "^1.2.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.0.2",
"knex": "^0.21.0",
"lint-staged": "^10.0.3",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^9.0.0",
"sqlite3": "^4.2.0"
},
"author": {
"name": "Ricardo Graça",
"url": "https://github.com/ricardograca"
},
"license": "MIT",
"engines": {
"node": ">=10"
}
}