forked from cnpm/cnpmcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.86 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "cnpmcore",
"version": "3.21.0",
"description": "npm core",
"files": [
"dist/**/*"
],
"main": "./dist/app.js",
"typings": "./dist/app",
"exports": {
"./common/package.json": "./dist/app/common/package.json",
"./common/*": {
"type": "./dist/app/common",
"node": "./dist/app/common/*.js"
},
"./core/package.json": "./dist/app/core/package.json",
"./core/*": {
"type": "./dist/app/core",
"node": "./dist/app/core/*.js"
},
"./infra/package.json": "./dist/app/infra/package.json",
"./infra/*": {
"type": "./dist/app/infra",
"node": "./dist/app/infra/*.js"
},
"./port/package.json": "./dist/app/port/package.json",
"./port/*": {
"type": "./dist/app/port",
"node": "./dist/app/port/*.js"
},
"./repository/package.json": "./dist/app/repository/package.json",
"./repository/*": {
"type": "./dist/app/repository",
"node": "./dist/app/repository/*.js"
}
},
"scripts": {
"contributor": "git-contributor",
"dev": "egg-bin dev",
"lint": "eslint --cache --ext .ts .",
"lint:fix": "eslint --cache --ext .ts --fix .",
"test": "npm run lint:fix && npm run test-local",
"pretest-local": "bash ./prepare-database.sh",
"test-local": "egg-bin test",
"pret": "bash ./prepare-database.sh",
"t": "npm run lint:fix && egg-bin test --changed",
"precov": "bash ./prepare-database.sh",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov && npm run tsc:prod",
"clean": "tsc -b --clean && rm -rf dist",
"tsc": "npm run clean && tsc -p ./tsconfig.json",
"tsc:prod": "npm run clean && tsc -p ./tsconfig.prod.json",
"prepublishOnly": "npm run tsc:prod",
"start": "eggctl start --daemon && touch egg.status",
"stop": "rm -f egg.status && sleep 15 && eggctl stop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnpm/npmcore.git"
},
"egg": {
"typescript": true
},
"keywords": [
"npm",
"npm registry",
"registry"
],
"dependencies": {
"@eggjs/tegg": "^3.2.1",
"@eggjs/tegg-aop-plugin": "^3.2.1",
"@eggjs/tegg-config": "^3.1.0",
"@eggjs/tegg-controller-plugin": "^3.2.1",
"@eggjs/tegg-eventbus-plugin": "^3.2.1",
"@eggjs/tegg-orm-plugin": "^3.2.1",
"@eggjs/tegg-plugin": "^3.2.1",
"@eggjs/tegg-schedule-plugin": "^3.2.1",
"@eggjs/tsconfig": "^1.0.0",
"@node-rs/crc32": "^1.2.2",
"@simplewebauthn/server": "^7.0.1",
"@sinclair/typebox": "^0.23.0",
"base-x": "^3.0.9",
"base64url": "^3.0.1",
"bson-objectid": "^2.0.1",
"dayjs": "^1.10.7",
"egg": "^3.9.2",
"egg-cors": "^2.2.3",
"egg-errors": "^2.3.0",
"egg-redis": "^2.4.0",
"egg-scripts": "^2.15.2",
"egg-status": "^1.0.0",
"egg-tracer": "^1.1.0",
"egg-typebox-validate": "^2.0.0",
"egg-view-nunjucks": "^2.3.0",
"fs-cnpm": "^2.4.0",
"ioredis": "^5.3.1",
"leoric": "^2.6.2",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"mysql": "^2.18.1",
"mysql2": "^2.3.0",
"oss-cnpm": "^4.0.0",
"p-map": "^4.0.0",
"semver": "^7.3.5",
"ssri": "^8.0.1",
"tar": "^6.1.13",
"type-fest": "^2.5.3",
"ua-parser-js": "^1.0.34",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@cnpmjs/npm-cli-login": "^1.1.0",
"@simplewebauthn/typescript-types": "^7.0.0",
"@types/mocha": "^10.0.1",
"@types/mysql": "^2.15.21",
"@types/semver": "^7.3.12",
"@types/tar": "^6.1.4",
"coffee": "^5.4.0",
"egg-bin": "^6.0.0",
"egg-mock": "^5.10.4",
"eslint": "^8.29.0",
"eslint-config-egg": "^12.1.0",
"git-contributor": "2",
"typescript": "^5.0.4"
},
"author": "killagu",
"license": "MIT",
"bugs": {
"url": "https://github.com/cnpm/npmcore/issues"
},
"homepage": "https://github.com/cnpm/npmcore#readme",
"engines": {
"node": ">= 16.13.0"
}
}