-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "template-meteor-package",
"version": "1.0.0",
"private": true,
"description": "Template Meteor package for FOSS",
"main": "package.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Meteor-Community-Packages/template-package.git"
},
"bugs": {
"url": "https://github.com/Meteor-Community-Packages/template-package/issues"
},
"homepage": "https://github.com/Meteor-Community-Packages/template-package#readme",
"readme": "README.md",
"scripts": {
"test": "npm run lint && meteor test-packages ./",
"lint": "./node_modules/.bin/standard --fix",
"publish": "meteor npm i && npm prune --production && meteor publish && meteor npm i",
"all-contributors": "./node_modules/.bin/all-contributors",
"all-contributors-generate": "./node_modules/.bin/all-contributors generate"
},
"author": "Jan Dvorak",
"license": "MIT",
"standard": {
"parser": "babel-eslint"
},
"funding": {
"type": "PayPal",
"url": "https://www.paypal.me/JDvorak"
},
"husky": {
"hooks": {
"pre-commit": "bash preCommit.sh"
}
},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.0.3",
"husky": "^6.0.0",
"standard": "^16.0.3"
}
}