-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.24 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
{
"name": "meteor-collection-hooks",
"version": "1.0.2",
"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": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1"
}
}