-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 KB
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
{
"name": "publish-composite",
"version": "1.9.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Meteor-Community-Packages/meteor-publish-composite.git"
},
"bugs": {
"url": "https://github.com/Meteor-Community-Packages/meteor-publish-composite/issues"
},
"homepage": "https://github.com/Meteor-Community-Packages/meteor-publish-composite#readme",
"scripts": {
"test": "npm run lint && npm run test:package",
"test:package": "meteor test-packages ./ --driver-package meteortesting:mocha",
"lint": "./node_modules/.bin/standard --fix",
"lint:test": "./node_modules/.bin/standard",
"publish": "npm prune --omit=dev && meteor publish && meteor npm i",
"all-contributors": "./node_modules/.bin/all-contributors",
"all-contributors-generate": "./node_modules/.bin/all-contributors generate"
},
"readme": "README.md",
"license": "MIT",
"standard": {
"parser": "@babel/eslint-parser",
"ignore": [
"/.npm/",
"/node_modules/",
"package.js"
]
},
"husky": {
"hooks": {
"pre-commit": "bash preCommit.sh && npm run all-contributors-generate"
}
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/eslint-parser": "^7.26.8",
"@babel/preset-env": "^7.26.9",
"all-contributors-cli": "^6.26.1",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"husky": "^8.0.3",
"standard": "^17.1.2"
}
}