-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "tdd-exercises",
"version": "0.1.0",
"description": "TDD exercises",
"main": "index.js",
"scripts": {
"test": "nyc mocha -r ts-node/register \"src/**/*.test.ts\"",
"coverage": "nyc --reporter=html mocha -r ts-node/register \"src/**/*.test.ts\"",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matteobarone/tdd-exercises.git"
},
"keywords": [
"tdd",
"exercises",
"nodejs",
"node",
"js"
],
"author": "Matteo Barone",
"license": "ISC",
"bugs": {
"url": "https://github.com/matteobarone/tdd-exercises/issues"
},
"homepage": "https://github.com/matteobarone/tdd-exercises#readme",
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1"
}
}