-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 901 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 901 Bytes
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
{
"name": "@mineralts/storage-preview",
"version": "1.0.0",
"main": "build/index.js",
"repository": "git@github.com:Mineral-ts/storage.git",
"author": "leadcodedev <baptiste.parmantier.pro@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@types/luxon": "^2.0.5",
"@types/node": "^16.11.6",
"luxon": "^2.0.2",
"sequelize": "^6.17.0",
"sqlite3": "^5.0.2",
"typescript": "^4.4.4",
"vitest": "^0.3.4"
},
"devDependencies": {
"@nas-service/eslint-config": "1.1.0",
"eslint": "^8.3.0"
},
"@mineralts": {
"instruction": "./build/Instruction.js",
"provider": "./build/providers/StorageProvider.js",
"commands": [
"./build/commands"
]
}
}