-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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": "currency-api",
"version": "1.0.0",
"description": "A currency api with historical data",
"main": "index.js",
"scripts": {
"start": "PORT=8080 nodemon -L -e js,yml,sql index.js",
"test": "mocha -t 500 -b",
"test-cov": "nyc mocha -t 500 -b",
"mutation-cov": "stryker run",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/geshan/currency-api.git"
},
"keywords": [
"test"
],
"author": "Geshan Manandhar",
"license": "ISC",
"bugs": {
"url": "https://github.com/geshan/currency-api/issues"
},
"homepage": "https://github.com/geshan/currency-api",
"dependencies": {
"axios": "^1.6.4",
"body-parser": "^1.20.1",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"expressjs-utils": "^1.2.3",
"helmet": "^4.6.0",
"lodash": "^4.17.21",
"namshi-node-mysql": "^2.1.0",
"snyk": "^1.1064.0"
},
"devDependencies": {
"@architect/sandbox": "^5.9.2",
"@stryker-mutator/core": "^6.3.0",
"@stryker-mutator/javascript-mutator": "^4.0.0",
"@stryker-mutator/mocha-framework": "^3.0.0",
"@stryker-mutator/mocha-runner": "^6.3.0",
"husky": "^3.0.2",
"mocha": "^10.1.0",
"nock": "^12.0.0",
"nodemon": "^2.0.20",
"nyc": "^15.0.0",
"prettier": "2.0.0",
"proxyquire": "^2.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"snyk": true
}