-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.57 KB
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
{
"name": "@pillarwallet/common-services",
"version": "4.7.0",
"description": "A module that provides access to common services.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test:unit": "jest unit --coverage",
"test:integration": "jest integration",
"test": "npm run lint && npm run test:unit",
"precommit": "npm test",
"generateReadme": "echo \"\" > README.md && jsdoc2md lib/**/* --template templates/README.hbs > README.md"
},
"repository": {
"type": "git",
"url": "git@github.com:pillarwallet/common-services.git"
},
"author": "Pillar Project team <info@pillarproject.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pillarwallet/common-services/issues"
},
"homepage": "https://github.com/pillarwallet/common-services#readme",
"dependencies": {
"@pillarwallet/common-logger": "https://github.com/pillarwallet/common-logger",
"aws-sdk": "2.252.1",
"bunyan": "1.8.12",
"bunyan-rotating-file-stream": "1.6.3",
"fs": "0.0.1-security",
"mongoose": "5.7.7",
"path": "0.12.7",
"response-time": "2.3.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.17.0",
"eslint-plugin-prettier": "2.6.1",
"husky": "^3.0.9",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"jsdoc-to-markdown": "^5.0.0",
"prettier": "1.13.7",
"supertest": "3.3.0"
},
"jest": {
"testEnvironment": "node"
}
}