-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "adonis-dynamodb",
"version": "1.2.3",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Melchyore/adonis-dynamodb.git"
},
"bugs": {
"url": "https://github.com/Melchyore/adonis-dynamodb/issues"
},
"homepage": "https://github.com/Melchyore/adoscopejs",
"main": "./build/providers/DynamoDBProvider.js",
"types": "./build/adonis-typings/index.d.ts",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"coverage": "nyc npm run test",
"test": "docker-compose build && docker-compose run --rm tests",
"clean": "del-cli build",
"test:docker": "FORCE_COLOR=true node -r @adonisjs/require-ts/build/register ./bin/test/index.ts",
"build": "npm run compile",
"lint": "eslint . --ext=.ts",
"compile": "npm run lint && npm run clean && tsc && npm run copyfiles",
"copyfiles": "copyfiles \"templates/**/*.txt\" \"instructions.md\" build",
"prepublishOnly": "npm run build",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np --message=\"chore(release): %s\"",
"version": "npm run build",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json Melchyore/adonis-dynamodb"
},
"devDependencies": {
"@adonisjs/assembler": "^5.3.0",
"@adonisjs/mrm-preset": "^5.0.3",
"@adonisjs/require-ts": "^2.0.10",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@japa/assert": "^1.2.4",
"@japa/expect": "^1.1.2",
"@japa/run-failed-tests": "^1.0.5",
"@japa/runner": "^2.0.3",
"@japa/spec-reporter": "^1.1.10",
"@poppinss/dev-utils": "^2.0.2",
"@types/node": "^17.0.21",
"adonis-preset-ts": "^2.1.0",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^4.0.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-adonis": "^2.1.0",
"eslint-plugin-prettier": "^4.0.0",
"github-label-sync": "^2.0.2",
"husky": "^7.0.4",
"japa": "^4.0.0",
"local-dynamo": "^0.6.0",
"mrm": "^3.0.10",
"np": "^7.6.1",
"nyc": "^15.1.0",
"pino-pretty": "^7.5.4",
"prettier": "^2.6.0",
"reflect-metadata": "^0.1.13",
"tslint": "^6.1.3",
"typescript": "~4.5",
"youch": "^3.1.1",
"youch-terminal": "^2.1.3"
},
"peerDependencies": {
"@adonisjs/core": "^5.4.0"
},
"dependencies": {
"dyngoose": "^3.0.2"
},
"license": "MIT",
"files": [
"build/adonis-typings",
"build/providers",
"build/templates",
"build/commands",
"build/src",
"build/instructions.js",
"build/instructions.md"
],
"eslintIgnore": [
"build"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"adonisjs": {
"types": "adonis-dynamodb",
"instructions": "./build/instructions.js",
"instructionsMd": "./build/instructions.md",
"templates": {
"config": [
{
"src": "config.txt",
"dest": "dynamodb"
}
]
},
"providers": [
"adonis-dynamodb"
],
"commands": [
"adonis-dynamodb/build/commands"
]
}
}