This repository was archived by the owner on Nov 17, 2022. 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
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"name": "packagekit",
"version": "1.0.0",
"description": "A packageKit wrapper for node",
"repository": "https://github.com/app-outlet/node-packagekit",
"author": "Messias Junior",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"start": "ts-node src/",
"start:internal-test": "ts-node src/internaltest"
},
"dependencies": {
"dbus-next": "^0.10.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"tsyringe": "^4.6.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}