Blame view

node_modules/@nuxt/opencollective/package.json 1.14 KB
4cd4fd28   郭伟龙   feat: 初始化项目
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
{
  "name": "@nuxt/opencollective",
  "version": "0.3.3",
  "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",
    "prepublish": "yarn build",
    "release": "standard-version && git push --follow-tags && npm publish",
    "test": "yarn lint && yarn test:coverage",
    "test:ava": "nyc ava --verbose",
    "test:coverage": "nyc --reporter=lcov --reporter=html ava"
  },
  "ava": {
    "require": [
      "jiti/register"
    ]
  },
  "dependencies": {
    "chalk": "^4.1.0",
    "consola": "^2.15.0",
    "node-fetch": "^2.6.7"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.0.0",
    "@commitlint/config-conventional": "^17.0.0",
    "@nuxtjs/eslint-config": "^10.0.0",
    "ava": "^4.2.0",
    "bili": "latest",
    "eslint": "^8.15.0",
    "fetch-mock": "^9.11.0",
    "jiti": "^1.13.0",
    "nyc": "latest",
    "sinon": "^14.0.0",
    "standard-version": "^9.5.0"
  },
  "engines": {
    "node": ">=8.0.0",
    "npm": ">=5.0.0"
  }
}