-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@semrel-extra/npmrc",
"alias": "dotnpmrc",
"version": "0.1.3",
"description": ".npmrc formatter",
"main": "./target/cjs/index.cjs",
"module": "./target/esm/index.mjs",
"types": "./target/dts/index.d.ts",
"exports": {
".": {
"types": "./target/dts/index.d.ts",
"import": "./target/esm/index.mjs",
"require": "./target/cjs/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "concurrently 'npm:build:*'",
"build:esm": "node ./src/scripts/build.cjs",
"build:cjs": "node ./src/scripts/build.cjs --cjs",
"build:dts": "tsc --emitDeclarationOnly --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"format": "yarn test:lint --fix",
"test": "concurrently 'npm:test:*'",
"test:lint": "eslint -c src/test/lint/.eslintrc.json src",
"test:unit": "c8 -r html -r text -r lcov --exclude ./src/test -o ./target/coverage uvu -r tsm src/test/ts",
"test:it": "uvu -r tsm src/test/js"
},
"files": [
"target/cjs",
"target/esm",
"target/dts",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/semrel-extra/npmrc.git"
},
"dependencies": {
"ini": "^4.1.1"
},
"devDependencies": {
"@types/ini": "^1.3.31",
"@types/node": "^20.2.1",
"c8": "^7.13.0",
"concurrently": "^8.0.1",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.7.0",
"eslint": "^8.41.0",
"eslint-config-qiwi": "^2.1.3",
"tsm": "^2.3.0",
"typedoc": "^0.26.0",
"typescript": "^5.0.4",
"uvu": "^0.5.6"
},
"keywords": [
"npm",
"npmrc"
],
"contributors": [
"Anton Golub <[email protected]>"
],
"license": "MIT"
}