forked from mappies/nodenamo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "nodenamo",
"version": "1.0.2",
"description": "A powerful ORM for DynamoDb",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/*"
],
"scripts": {
"test": "cd spec/unit && mocha --require ts-node/register *.ts",
"acceptance": "cd spec/acceptance && mocha --require ts-node/register *.ts",
"build": "tsc --outDir dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mappies/nodenamo.git"
},
"author": "Nithiwat Kampanya",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mappies/nodenamo/issues"
},
"homepage": "https://github.com/mappies/nodenamo#readme",
"dependencies": {
"aggregate-error": "^3.0.1",
"aws-sdk": "^2.597.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.4",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"ts-node": "^8.5.4",
"typemoq": "^2.1.0",
"typescript": "^3.7.4"
}
}