forked from kat4/wordkat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "wordkat",
"version": "1.0.0",
"description": "wordkat has all the words and is a cat.",
"main": "server.js",
"scripts": {
"codeclimate": "CODECLIMATE_REPO_TOKEN=a889619003456f0d1a6a13884b859d69eedec58b08db8bc5222302b5c11ebe0b codeclimate-test-reporter < ./coverage/lcov.info",
"test": "./node_modules/.bin/tape ./tests/servertest.js",
"coverage": "istanbul cover ./node_modules/.bin/tape ./tests/servertest.js"
},
"pre-commit": [
"coverage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kat4/wordkat.git"
},
"keywords": [
"word",
"wordkat",
"cat",
"kat4"
],
"author": "kat4",
"license": "MIT",
"bugs": {
"url": "https://github.com/kat4/wordkat/issues"
},
"homepage": "https://github.com/kat4/wordkat#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.3.21",
"nodemon": "^1.7.1",
"shot": "^1.6.1",
"tape": "^4.2.0"
},
"dependencies": {
"env2": "^2.0.2",
"request": "^2.64.0"
}
}