-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.27 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
{
"name": "meteor-collection-hooks",
"version": "1.2.1",
"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 --production && 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 <matb33@gmail.com> (http://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": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.31.4",
"eslint-plugin-standard": "^4.1.0",
"spacejam": "^1.6.1"
}
}