-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
85 lines (85 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
82
83
84
85
{
"name": "feathers-permissions",
"description": "Simple permissions module for Feathers",
"version": "2.1.4",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-permissions",
"main": "lib/",
"types": "types/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-permissions.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-permissions/issues"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"lint": "semistandard --fix",
"dtslint": "dtslint types",
"mocha": "mocha --recursive test/",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run dtslint && npm run coverage",
"update-dependencies": "ncu -u"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"types/**",
"*.d.ts",
"*.js"
],
"dependencies": {
"@feathersjs/errors": "^4.5.15",
"debug": "^4.3.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/feathers": "^4.5.15",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.6.3",
"dtslint": "^4.2.1",
"feathers-memory": "^4.1.0",
"mocha": "^10.0.0",
"npm-check-updates": "^16.0.4",
"nyc": "^15.1.0",
"semantic-release": "^19.0.3",
"semistandard": "^16.0.1",
"typescript": "^4.7.4"
},
"release": {
"branches": [
"release"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}