-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.09 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
{
"name": "dyno-ts",
"version": "1.0.0",
"description": "DynamoDB ORM in TypeScript",
"main": "index.js",
"scripts": {
"dynamodb:start":
"node ./node_modules/local-dynamo/bin/launch_local_dynamo.js --port=8000",
"test": "NODE_PATH=$NODE_PATH:./src yarn run jest -- ",
"test:coverage": "yarn run test -- --coverage",
"test:watch": "yarn run test -- --watch",
"test:watch:coverage": "yarn run test -- --watch --coverage",
"lint": "tslint 'app/**/*.ts'"
},
"author": "Pavel Vlasov <[email protected]>",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.141.0",
"aws-xray-sdk-core": "^1.1.6",
"lodash": "^4.17.4",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/local-dynamo": "^0.5.0",
"@types/lodash": "^4.14.80",
"@types/node": "^8.0.47",
"@types/uuid": "^3.4.3",
"awesome-typescript-loader": "^3.3.0",
"aws-lambda-typescript": "^1.0.1",
"codecov": "^3.0.0",
"jest": "^21.2.1",
"jest-environment-jsdom": "^21.2.1",
"jest-environment-node": "^21.2.1",
"local-dynamo": "^0.5.0",
"ts-jest": "^21.1.4",
"tslint": "^5.8.0",
"tslint-consistent-codestyle": "^1.9.0",
"typescript": "^2.5.3"
},
"jest": {
"verbose": false,
"transform": {
"^.+\\.tsx?$": "<rootDir>/scripts/jest-preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"],
"setupFiles": ["<rootDir>/scripts/test-setup.ts"],
"coveragePathIgnorePatterns": ["/node_modules/", "/scripts/"],
"coverageDirectory": "./coverage/",
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"mapCoverage": true
},
"pre-commit": ["test", "lint"]
}