@node-cli/npmrc 2.1.1 → 2.1.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.
- package/dist/npmrc.js +0 -0
- package/package.json +52 -51
package/dist/npmrc.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,52 +1,53 @@
|
|
|
1
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
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
2
|
+
"name": "@node-cli/npmrc",
|
|
3
|
+
"version": "2.1.3",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"author": "Arno Versini",
|
|
6
|
+
"description": "Toggle different npmrc configuration files on the fly",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/versini-org/node-cli.git",
|
|
10
|
+
"directory": "packages/npmrc"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": "./dist/npmrc.js",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=22"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@node-cli/logger": "2.1.1",
|
|
24
|
+
"@node-cli/parser": "3.1.1",
|
|
25
|
+
"@node-cli/run": "2.1.2",
|
|
26
|
+
"fs-extra": "11.4.1",
|
|
27
|
+
"kleur": "4.1.5"
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@vitest/coverage-v8": "4.1.11",
|
|
34
|
+
"vitest": "4.1.11"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "npm-run-all --serial clean build:types build:js build:barrel",
|
|
38
|
+
"build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
|
|
39
|
+
"build:js": "swc --strip-leading-paths --source-maps --out-dir dist src",
|
|
40
|
+
"build:types": "tsc",
|
|
41
|
+
"clean": "rimraf dist types coverage",
|
|
42
|
+
"comments:fix": "comments --merge-line-comments 'src/**/*.ts'",
|
|
43
|
+
"lint": "biome lint src",
|
|
44
|
+
"lint:fix": "biome check src --write --no-errors-on-unmatched",
|
|
45
|
+
"test": "vitest run --globals",
|
|
46
|
+
"test:coverage": "vitest run --coverage --globals",
|
|
47
|
+
"test:watch": "vitest --globals",
|
|
48
|
+
"watch": "swc --strip-leading-paths --watch --out-dir dist src"
|
|
49
|
+
},
|
|
50
|
+
"bin": {
|
|
51
|
+
"npmrc": "dist/npmrc.js"
|
|
52
|
+
}
|
|
53
|
+
}
|