-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "@discord-factory/base-addon",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"author": "Baptiste Parmantier <baptiste.parmantier.pro@gmail.com>",
"license": "MIT",
"repository": "git@github.com:DiscordFactory/storage-next.git",
"keywords": [],
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "ava"
},
"devDependencies": {
"@types/node": "^14.14.37",
"ava": "^3.15.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-plugin-ava": "^12.0.0",
"typescript": "^4.2.3"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"test/**/*.spec.ts"
],
"verbose": true
},
"dependencies": {
"@discord-factory/core-next": "^1.3.0",
"@leadcodedev/logger": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"fs-recursive": "^1.1.7"
}
}