forked from aws-samples/node-js-tests-sample
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 719 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 719 Bytes
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
{
"name": "node-game-unit-tests",
"version": "1.0.0",
"description": "This package is used as a demonstrator with AWS CodeBuild to write unit tests.",
"main": "src/index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scttzth/node-js-game-app-unit-tests.git"
},
"keywords": [
"node",
"aws",
"codebuild"
],
"author": "Thomas Scott (AWS)",
"license": "MIT-0",
"bugs": {
"url": "https://github.com/scttzth/node-js-game-app-unit-tests/issues"
},
"homepage": "https://github.com/scttzth/node-js-game-app-unit-tests#readme",
"dependencies": {
"chai": "4.3.4",
"mocha": "8.4.0",
"sinon": "11.1.1"
}
}