-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
75 lines (75 loc) · 1.87 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
{
"name": "@artus/core",
"version": "2.2.3",
"description": "Core package of Artus",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./injection": {
"types": "./lib/injection.d.ts",
"default": "./lib/injection.js"
},
"./utils/*": {
"types": "./lib/utils/*.d.ts",
"default": "./lib/utils/*.js"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"test": "jest --detectOpenHandles --testTimeout=15000",
"cov": "jest --coverage --detectOpenHandles --testTimeout=15000",
"ci": "npm run lint && npm run cov",
"lint:fix": "eslint . --ext .ts --fix",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artusjs/core.git"
},
"author": "Artus Working Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/artusjs/core/issues"
},
"homepage": "https://github.com/artusjs/core#readme",
"devDependencies": {
"@artus/eslint-config-artus": "0.0.1",
"@artus/tsconfig": "1.0.1",
"@babel/core": "^7.18.6",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.5",
"@types/koa": "^2.13.4",
"@types/minimatch": "^3.0.5",
"@types/node": "^20.10.5",
"axios": "^0.26.1",
"babel-jest": "^29.7.0",
"egg-ci": "^2.1.0",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.7.0",
"koa": "^2.13.4",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.1",
"typescript": "^4.8.0"
},
"dependencies": {
"@artus/injection": "^0.5.1",
"deepmerge": "^4.2.2",
"minimatch": "^5.0.1",
"tslib": "^2.6.1"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"ci": {
"version": "16, 18"
}
}