-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "aws-queue-ops",
"version": "1.0.7",
"description": "Amazon AWS SQS processing made easy",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"test": "jest --ci --silent",
"build": "tsc -p tsconfig.json",
"watch": "tsc -w",
"prepublish": "npm run build",
"deploy": "npm version patch && git push origin master --tags && npm publish --access public"
},
"keywords": [],
"author": "Juan Camilo Guarín P",
"license": "MIT",
"devDependencies": {
"@types/jest": "^21.1.4",
"@types/node": "^9.4.6",
"aws-sdk": "^2.201.0",
"jest": "^21.2.1",
"ts-jest": "^21.1.3",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.5.3"
},
"dependencies": {
"assert": "^1.4.1",
"moment": "^2.20.1",
"promises-all": "^1.0.0"
},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"mapCoverage": true,
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/out"
]
},
"peerDependencies": {
"aws-sdk": "^2.201.0"
}
}