-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "roman-numeral-kata",
"version": "0.1.1",
"private": true,
"description": "A coding exercise.",
"keywords": [
"arabic-numerals",
"exercise",
"kata",
"numbers",
"roman-numerals"
],
"homepage": "https://github.com/jbenner-radham/node-roman-numeral-kata#readme",
"bugs": {
"url": "https://github.com/jbenner-radham/node-roman-numeral-kata/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbenner-radham/node-roman-numeral-kata.git"
},
"license": "MIT",
"author": "James Benner <[email protected]> (http://www.jamesbenner.com/)",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"prepublishOnly": "trevor",
"pretest": "eslint . --fix",
"test": "nyc mocha"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.14.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"mocha": "^6.0.1",
"nyc": "^13.3.0",
"sort-package-json": "^1.19.0",
"trevor": "^2.4.0"
},
"engines": {
"node": ">=8"
}
}