-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "larvitorder",
"version": "4.1.6",
"description": "Generic order system",
"main": "./dist/index.js",
"files": [
"/dist",
"/dbmigration"
],
"dependencies": {
"async": "3.2.4",
"larvitdb": "3.2.39",
"larvitdbmigration": "7.0.47",
"larvitutils": "5.1.29",
"luxon": "^3.1.1",
"uuid": "11.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/luxon": "^3.1.0",
"@types/mocha": "10.0.1",
"@types/node": "22.8.7",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "8.37.0",
"mocha": "11.0.1",
"nyc": "17.0.0",
"ts-node": "10.9.1",
"typescript": "5.0.3"
},
"scripts": {
"build": "rm -rf dist/* && tsc",
"lint": "eslint src/*.ts test/*.ts",
"test:unit": "mocha --exit --bail -r ts-node/register 'test/**/*.ts'",
"test:cov": "nyc mocha --exit --bail -r ts-node/register 'test/**/*.ts'",
"test": "npm run lint && npm run test:cov"
},
"repository": "https://github.com/larvit/larvitorder.git",
"keywords": [
"order",
"orders",
"multi-purpose"
],
"author": "lilleman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/larvit/larvitorder/issues"
},
"homepage": "https://github.com/larvit/larvitorder#readme"
}