forked from thosakwe/feathers-seeder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 KB
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
{
"name": "@bitscheme/feathers-seeder",
"version": "3.0.3",
"description": "Straightforward data seeder for FeathersJS services.",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run test",
"release:prerelease": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "eslint lib/. test/.",
"mocha": "mocha test/",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/bitscheme/feathers-seeder"
},
"keywords": [
"feathers",
"feathers-plugin"
],
"author": {
"name": "Tobe O",
"email": "thosakwe@gmail.com",
"url": "https://blog.thosakwe.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/bitscheme/feathers-seeder/issues"
},
"engines": {
"node": ">= 10"
},
"license": "MIT",
"directories": {
"lib": "lib"
},
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.3",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"feathers-memory": "^4.1.0",
"mocha": "^7.0.1"
},
"dependencies": {
"@feathersjs/errors": "^4.5.1",
"@feathersjs/feathers": "^4.5.1",
"@faker-js/faker": "^7.6.0"
}
}