-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
81 lines (81 loc) · 1.96 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
{
"name": "objection-guid",
"version": "3.1.0",
"description": "objection-guid",
"keywords": [
"guid",
"id",
"objection",
"objectionjs",
"plugin",
"plugins"
],
"license": "MIT",
"author": {
"name": "Seegno",
"email": "[email protected]",
"url": "https://seegno.com"
},
"repository": {
"type": "git",
"url": "https://github.com/seegno/objection-guid.git"
},
"types": "index.d.ts",
"scripts": {
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"cover": "jest --coverage --forceExit",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls",
"lint": "eslint index.js test",
"lint-staged": "lint-staged",
"test": "jest --forceExit",
"test-watch": "jest --watch --onlyChanged",
"version": "npm run changelog --future-release=$npm_package_version && git add -A CHANGELOG.md"
},
"pre-commit": [
"lint-staged"
],
"dependencies": {
"uuid": "^3.1.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-seegno": "^9.0.0",
"eslint-plugin-jest": "^20.0.3",
"jest": "^20.0.3",
"knex": "^0.13.0",
"lint-staged": "^4.0.2",
"objection": "^0.8.5",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1"
},
"engines": {
"node": ">=6"
},
"jest": {
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"lcov",
"text"
],
"coveragePathIgnorePatterns": [
"./test/fixtures"
],
"testEnvironment": "node",
"testRegex": "(test/.*\\.test.js)$"
},
"lint-staged": {
"index.js": [
"prettier --single-quote --write",
"eslint",
"git add",
"jest --findRelatedTests --forceExit"
],
"test/**/*.js": [
"eslint",
"git add",
"jest --findRelatedTests --forceExit"
]
}
}