-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
39 lines (39 loc) · 1.37 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
{
"name": "meteor-collection-hooks",
"version": "2.0.0",
"private": true,
"scripts": {
"start": "meteor test-packages ./",
"tools:lint": "./node_modules/eslint/bin/eslint.js *.js tests",
"tools:lintfix": "./node_modules/eslint/bin/eslint.js *.js tests --fix",
"publish": "meteor npm i && npm prune --omit=dev && meteor publish && meteor npm i",
"test": "meteor test-packages ./"
},
"description": "Extends Mongo.Collection with before/after hooks for insert/update/remove/find/findOne",
"author": "Mathieu Bouchard <[email protected]> (https://github.com/matb33)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Meteor-Community-Packages/meteor-collection-hooks.git"
},
"bugs": {
"url": "https://github.com/Meteor-Community-Packages/meteor-collection-hooks/issues"
},
"homepage": "https://github.com/Meteor-Community-Packages/meteor-collection-hooks",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-standard": "^4.1.0",
"spacejam": "^1.6.1"
},
"volta": {
"node": "22.12.0"
}
}