-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
47
48
49
50
{
"name": "cli-typer",
"version": "1.0.0",
"description": "Practice touch typing in the commandline and measure your skills",
"main": "app.js",
"engineStrict": true,
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"test": "node app.js -d -t 1",
"lint": "./node_modules/.bin/eslint . ./**/*.js"
},
"bin": {
"cli-typer": "./app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balzss/cli-typer.git"
},
"keywords": [
"typing",
"touch-type"
],
"author": {
"name": "Balazs Saros",
"email": "balazs.saros@gmail.com",
"url": "https://github.com/balzss"
},
"contributors": [
{
"name": "Mice Papai",
"email": "qwhexz@gmail.com",
"url": "https://qwhex.com"
},
{
"name": "Brady Mitchell",
"email": "bradym@users.noreply.github.com",
"url": "https://github.com/bradym"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/balzss/cli-typer/issues"
},
"homepage": "https://github.com/balzss/cli-typer#readme",
"devDependencies": {
"eslint": "^4.19.1"
}
}