-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "ripcord",
"engines": {
"node": ">=8"
},
"version": "0.0.1-pre",
"description": "An Adventure game, silly.",
"main": "src/app.js",
"scripts": {
"start": "node .",
"test": "`npm bin`/_mocha --recursive src --exit && `npm bin`/eslint src",
"test:ci": "`npm bin`/nyc --reporter=lcov npm run test:junit && `npm bin`/eslint src",
"test:junit": "`npm bin`/_mocha --recursive src --exit --reporter xunit --reporter-options output=test-reports/results.xml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kryptx/ripcord.git"
},
"keywords": [
"json-rpc",
"adventure",
"game"
],
"author": "Jason Burbage <kryptx@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kryptx/ripcord/issues"
},
"homepage": "https://github.com/kryptx/ripcord#readme",
"dependencies": {
"base64url": "^3.0.1",
"bunyan": "^1.8.14",
"cookie": "^0.4.1",
"joi": "^17.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"mocha": "^5.0.4",
"nyc": "^11.6.0",
"sinon": "^4.4.6",
"supertest": "^3.0.0"
},
"nyc": {
"report-dir": "test-reports"
}
}