This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
84 lines (84 loc) · 2.58 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
{
"name": "feathers-memory",
"description": "An in memory service store",
"version": "4.1.0",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-memory",
"main": "lib/index",
"types": "types",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-memory.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-memory/issues"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"add-dist": "npm run clean && npm run build && git add dist/ --force && git commit -am \"Updating dist\"",
"clean": "shx rm -rf dist/ && shx mkdir -p dist",
"build": "npm run clean && npm run webpack && npm run webpack:production",
"webpack": "webpack",
"webpack:production": "NODE_ENV=production webpack",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm run add-dist && npm version patch && npm publish",
"release:minor": "npm run add-dist && npm version minor && npm publish",
"release:major": "npm run add-dist && npm version major && npm publish",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"dtslint": "dtslint types",
"test": "npm run dtslint && npm run lint && npm run coverage"
},
"browserslist": [
"last 2 versions",
"IE 10"
],
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.4.3",
"@feathersjs/commons": "^4.4.3",
"@feathersjs/errors": "^4.4.3",
"sift": "^11.0.10"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@feathersjs/adapter-tests": "^4.4.3",
"@feathersjs/express": "^4.4.3",
"@feathersjs/feathers": "^4.4.3",
"@feathersjs/socketio": "^4.4.3",
"@types/node": "^13.1.7",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"dtslint": "^3.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^7.0.0",
"semistandard": "^14.2.0",
"shx": "^0.3.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
}
}