libnpmpack 4.0.2 → 4.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +13 -11
package/README.md CHANGED
@@ -2,8 +2,7 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/libnpmpack.svg)](https://npm.im/libnpmpack)
4
4
  [![license](https://img.shields.io/npm/l/libnpmpack.svg)](https://npm.im/libnpmpack)
5
- [![GitHub Actions](https://github.com/npm/libnpmpack/workflows/Node%20CI/badge.svg)](https://github.com/npm/libnpmpack/actions?query=workflow%3A%22Node+CI%22)
6
- [![Coverage Status](https://coveralls.io/repos/github/npm/libnpmpack/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmpack?branch=latest)
5
+ [![CI - libnpmpack](https://github.com/npm/cli/actions/workflows/ci-libnpmpack.yml/badge.svg)](https://github.com/npm/cli/actions/workflows/ci-libnpmpack.yml)
7
6
 
8
7
  [`libnpmpack`](https://github.com/npm/libnpmpack) is a Node.js library for
9
8
  programmatically packing tarballs from a local directory or from a registry or github spec. If packing from a local source, `libnpmpack` will also run the `prepack` and `postpack` lifecycles.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "libnpmpack",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "Programmatic API for the bits behind npm pack",
5
5
  "author": "GitHub Inc.",
6
6
  "main": "lib/index.js",
@@ -8,33 +8,34 @@
8
8
  "Claudia Hernández <claudia@npmjs.com>"
9
9
  ],
10
10
  "files": [
11
- "bin",
12
- "lib"
11
+ "bin/",
12
+ "lib/"
13
13
  ],
14
14
  "license": "ISC",
15
15
  "scripts": {
16
16
  "preversion": "npm test",
17
17
  "postversion": "npm publish",
18
18
  "prepublishOnly": "git push origin --follow-tags",
19
- "lint": "eslint '**/*.js'",
19
+ "lint": "eslint \"**/*.js\"",
20
20
  "test": "tap",
21
21
  "posttest": "npm run lint",
22
- "postlint": "npm-template-check",
22
+ "postlint": "template-oss-check",
23
23
  "lintfix": "npm run lint -- --fix",
24
24
  "snap": "tap",
25
- "template-copy": "npm-template-copy --force"
25
+ "template-oss-apply": "template-oss-apply --force"
26
26
  },
27
27
  "tap": {
28
28
  "check-coverage": true
29
29
  },
30
30
  "devDependencies": {
31
- "@npmcli/template-oss": "^2.4.2",
31
+ "@npmcli/eslint-config": "^3.0.1",
32
+ "@npmcli/template-oss": "3.3.2",
32
33
  "nock": "^13.0.7",
33
- "tap": "^15.0.0"
34
+ "tap": "^16.0.1"
34
35
  },
35
36
  "repository": {
36
37
  "type": "git",
37
- "url": "https://github.com/npm/cli",
38
+ "url": "https://github.com/npm/cli.git",
38
39
  "directory": "workspaces/libnpmpack"
39
40
  },
40
41
  "bugs": "https://github.com/npm/libnpmpack/issues",
@@ -45,9 +46,10 @@
45
46
  "pacote": "^13.0.5"
46
47
  },
47
48
  "engines": {
48
- "node": "^12.13.0 || ^14.15.0 || >=16"
49
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
49
50
  },
50
51
  "templateOSS": {
51
- "version": "2.9.2"
52
+ "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
53
+ "version": "3.3.2"
52
54
  }
53
55
  }