-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "aki-plugin-manager",
"description": "Lightweight at-runtime plugin manager and loader",
"version": "1.3.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "mocha -r ts-node/register 'tests/**/*.ts' --timeout 5000",
"cover": "nyc --reporter=lcovonly --reporter=text-summary npm test",
"lint": "eslint ."
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xgi/aki-plugin-manager.git"
},
"author": {
"name": "Jake Robertson",
"email": "jake@faltro.com",
"url": "https://faltro.com"
},
"license": "MIT",
"keywords": [
"plugins",
"plugin",
"packages",
"package",
"extensions",
"extension",
"npm"
],
"homepage": "https://github.com/xgi/aki-plugin-manager",
"dependencies": {
"rimraf": "^3.0.2",
"tar": "^6.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/rimraf": "^3.0.0",
"@types/tar": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.2",
"mocha": "^8.4.0",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}