This repository was archived by the owner on May 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 KB
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
{
"name": "@akhilome/orion",
"version": "0.7.0",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"repository": "git@github.com:akhilome/orion.git",
"author": "Kizito Akhilome <kizito@akhilo.me>",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn parcel",
"clean": "rimraf ./dist",
"lint": "eslint src test --ext ts",
"lint:fix": "eslint src test --ext ts --fix",
"parcel": "parcel build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@akhilome/common": "^0.2.0",
"caller": "^1.1.0",
"chalk": "^4.1.2",
"fast-glob": "^3.2.12",
"joi": "^17.9.2",
"lodash": "^4.17.21"
},
"peerDependencies": {
"express": "^4.0.0",
"typescript": "^4.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@akhilome/eslint-config": "^1.0.4",
"@parcel/packager-ts": "2.8.2",
"@parcel/transformer-typescript-types": "2.8.2",
"@types/caller": "^1.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.5",
"@types/supertest": "^2.0.12",
"eslint": "^8.20.0",
"express": "^4.18.1",
"jest": "^29.3.1",
"parcel": "^2.8.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist/**/*"
]
}