-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
81 lines (81 loc) · 2.61 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": "feathers-localstorage",
"description": "A client side service based on @feathersjs/memory that persists to LocalStorage",
"version": "6.0.0-pre.2",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-localstorage",
"main": "lib/",
"types": "types/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-localstorage.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-localstorage/issues"
},
"engines": {
"node": ">= 6"
},
"browserslist": [
"last 2 versions",
"IE 10"
],
"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 -u feathersjs-ecosystem -p feathers-localstorage && 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": "node_modules/mocha/bin/_mocha -- --recursive test/",
"dtslint": "dtslint types",
"test": "npm run lint && npm run dtslint && npm run coverage",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive test/"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/memory": "^5.0.8"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@feathersjs/adapter-tests": "^5.0.8",
"@feathersjs/errors": "^5.0.8",
"@feathersjs/feathers": "^5.0.8",
"babel-loader": "^9.1.3",
"browserify": "^17.0.0",
"dtslint": "^4.2.1",
"istanbul": "^1.1.0-alpha.1",
"localstorage-memory": "^1.0.3",
"mocha": "^10.2.0",
"semistandard": "^17.0.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
}
}