-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.26 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
44
45
46
47
48
49
50
{
"name": "@nuxt/opencollective",
"version": "0.4.1",
"repository": "nuxt-contrib/opencollective",
"license": "MIT",
"main": "dist/index.js",
"bin": "bin/opencollective.js",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "bili -t node --format cjs src/index.js",
"lint": "eslint src test",
"lint:engines": "installed-check -d",
"prepublish": "pnpm build",
"release": "standard-version && git push --follow-tags && npm publish",
"test": "pnpm lint && pnpm test:coverage",
"test:ava": "nyc ava --verbose",
"test:coverage": "nyc --reporter=lcov --reporter=html ava"
},
"ava": {
"require": [
"jiti/register"
]
},
"dependencies": {
"consola": "^3.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@nuxtjs/eslint-config": "^12.0.0",
"ava": "^5.3.1",
"bili": "latest",
"eslint": "^8.57.1",
"fetch-mock": "^9.11.0",
"installed-check": "^9.3.0",
"jiti": "^1.21.7",
"node-fetch": "npm:node-fetch-native@^1.6.4",
"nyc": "latest",
"sinon": "^17.0.1",
"standard-version": "^9.5.0"
},
"engines": {
"node": "^14.18.0 || >=16.10.0",
"npm": ">=5.10.0"
},
"packageManager": "pnpm@9.15.1"
}