-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "@quoin/node-test-helpers",
"version": "2.0.1",
"description": "Test helpers library for nodeJS",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.15.0"
},
"scripts": {
"prepack": "npm run -s eslint && npm run -s coverage",
"eslint:node": "eslint --fix --ignore-pattern=\"*.test.js\" lib",
"eslint:test": "eslint --fix --config=.eslintrc.test.json \"lib/**/*.test.js\"",
"eslint": "npm run -s eslint:node && npm run -s eslint:test",
"test:unit": "mocha \"lib/**/*.unit.test.js\"",
"test": "npm run test:unit",
"coverage:unit": "nyc --report-dir=reports/coverage/unit npm run test:unit",
"coverage": "npm run coverage:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quoin/node-test-helpers.git"
},
"keywords": [
"nodejs",
"testing",
"helpers"
],
"author": {
"name": "Hữu Ðà Trần",
"email": "huuda.tran@quoininc.com",
"url": "https://www.quoininc.com/staff/huu-da-tran/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Quoin/node-test-helpers/issues"
},
"homepage": "https://github.com/Quoin/node-test-helpers#readme",
"dependencies": {
"@quoin/node-test-helpers-core": "^2.0.1",
"chai": "^4.3.4",
"chai-http": "~4.3.0",
"dirty-chai": "2.0.x",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0"
},
"devDependencies": {
"@quoin/eslint-config-quoin": "^2.0.2",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.1",
"nyc": "^15.1.0"
}
}