-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@qiwi/license",
"version": "2.0.3",
"description": "QIWI OSS License",
"bin": {
"qiwilicense": "./target/esm/cli.mjs"
},
"type": "module",
"main": "target/cjs/index.cjs",
"exports": {
".": {
"types": "./target/dts/index.d.ts",
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"default": "./target/esm/index.mjs"
}
},
"module": "target/esm/index.mjs",
"types": "target/dts/index.d.ts",
"files": [
"README.md",
"CHANGELOG.md",
"target/cjs",
"target/esm",
"target/dts",
"target/tpl",
"buildstamp.json"
],
"scripts": {
"format": "yarn test:lint --fix",
"test": "concurrently 'npm:test:*'",
"test:lint": "eslint src/**/*.{ts,js}",
"test:unit": "c8 -x '**/target' -x '**/src/test' --allowExternal -o target/coverage -r lcov -r text node --loader ts-node/esm --experimental-specifier-resolution=node node_modules/.bin/uvu ./src/test '.+\\.test\\.[tj]s'",
"test:depcheck": "depcheck --ignores='@qiwi/license,ts-node'",
"build": "concurrently 'npm:build:*'",
"build:esm": "node ./src/scripts/build.cjs",
"build:cjs": "node ./src/scripts/build.cjs --cjs",
"build:dts": "tsc --emitDeclarationOnly --skipLibCheck --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"build:stamp": "npm_config_yes=true npx buildstamp",
"build:tpl": "mkdir -p target/tpl && cp src/main/tpl/* target/tpl",
"publish:draft": "yarn build && npm publish --no-git-tag-version --tag draft",
"postupdate": "yarn && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/license.git"
},
"keywords": [
"license",
"oss",
"mit"
],
"bugs": {
"url": "https://github.com/qiwi/license/issues"
},
"homepage": "https://github.com/qiwi/license#readme",
"dependencies": {
"lodash-es": "^4.17.21",
"meow": "^12.1.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.6",
"c8": "^9.0.0",
"concurrently": "^8.2.2",
"depcheck": "^1.4.7",
"earljs": "^0.2.3",
"esbuild": "^0.21.0",
"esbuild-node-externals": "^1.12.0",
"esbuild-plugin-entry-chunks": "^0.1.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-qiwi": "^2.1.3",
"ts-node": "^10.9.2",
"typedoc": "^0.25.6",
"typescript": "^5.3.3",
"uvu": "^0.5.6"
},
"author": "QIWI <[email protected]>",
"contributors": [
"Anton Golub <[email protected]>",
"Osipova Evgeniya <[email protected]>"
],
"license": "MIT"
}