-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 748 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 748 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": "roman-numerals",
"version": "1.0.0",
"description": "takes a number and returns the roman numeral representation",
"main": "server.js",
"scripts": {
"start": "node_modules/.bin/nodemon .",
"test": "NODE_ENV=test node_modules/.bin/ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mckn/roman-numerals.git"
},
"author": "Marcus Andersson",
"license": "ISC",
"bugs": {
"url": "https://github.com/mckn/roman-numerals/issues"
},
"homepage": "https://github.com/mckn/roman-numerals#readme",
"dependencies": {
"koa": "^2.4.1",
"koa-router": "^7.2.1"
},
"devDependencies": {
"ava": "^0.23.0",
"nodemon": "^1.12.1",
"supertest-koa-agent": "^0.3.0"
}
}