-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
86 lines (86 loc) · 2.08 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
{
"name": "adonis-lucid-polymorphic",
"version": "1.0.1",
"description": "Adonis Lucid ^4.1.0 Polymorphic Relations Support.",
"main": "src/Relations",
"files": [
"providers",
"src"
],
"scripts": {
"pretest": "npm run test:cleanup && npm run lint",
"posttest": "npm run test:cleanup && npm run coverage",
"test:cleanup": "rm -rf test/database && rm -rf test/tmp",
"test:sqlite": "DB=sqlite node japaFile.js",
"test:win": "node japaFile.js",
"test:mysql": "DB=mysql node japaFile.js",
"test:pg": "DB=pg node japaFile.js",
"test": "nyc npm run test:sqlite",
"lint": "standard",
"lint:fix": "standard --fix",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"postversion": "git push --set-upstream origin master && git push --follow-tags"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"author": "Evgeny Razumov (enniel)",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enniel/adonis-lucid-polymorphic.git"
},
"keywords": [
"adonis",
"lucid",
"adonis-lucid",
"polymorphic",
"relations"
],
"bugs": {
"url": "https://github.com/enniel/adonis-lucid-polymorphic/issues"
},
"homepage": "https://github.com/enniel/adonis-lucid-polymorphic#readme",
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/lucid": "^4.1.0",
"@adonisjs/sink": "^1.0.17",
"child_process": "^1.0.2",
"coveralls": "^3.0.2",
"dotenv": "^6.1.0",
"fs-extra": "^7.0.0",
"husky": "^1.1.2",
"japa": "^2.0.4",
"japa-cli": "^1.0.1",
"lint-staged": "^7.3.0",
"mysql": "^2.16.0",
"nyc": "^13.0.1",
"pg": "^7.5.0",
"semver": "^5.6.0",
"sqlite3": "^4.0.2",
"standard": "^12.0.1"
},
"standard": {
"global": [
"use"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged",
"pre-push": "npm run test && lint-staged"
}
},
"nyc": {
"include": [
"src",
"providers"
]
}
}