forked from tuplo/dynoexpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "@tuplo/dynoexpr",
"description": "Expression builder for AWS.DynamoDB.DocumentClient",
"version": "0.0.0-development",
"repository": "[email protected]:tuplo/dynoexpr.git",
"author": "Rui Costa",
"license": "MIT",
"keywords": [
"aws",
"amazon",
"dynamodb",
"database",
"nosql",
"documentclient"
],
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"module": "lib/index.modern.js",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"devDependencies": {
"@types/jest": "25.1.5",
"@types/node": "13.11.0",
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.8.2",
"husky": "4.2.3",
"jest": "25.2.6",
"microbundle": "0.12.0-next.8",
"prettier": "2.0.2",
"ts-jest": "25.3.0",
"typescript": "3.8.3"
},
"scripts": {
"build": "microbundle --sourcemap false --format cjs,modern",
"lint": "eslint 'src/**'",
"test:watch": "jest --watch",
"test": "jest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}