-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 981 Bytes
/
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
{
"name": "workin-hard",
"description": "Type keys and code appears",
"version": "1.2.0",
"license": "MIT",
"main": "app.js",
"dependencies": {
"cli-color": "^2.0.3",
"keypress": "^0.2.1"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-promise": "^6.1.1"
},
"bin": {
"workin-hard": "./app.js"
},
"repository": {
"type": "git",
"url": "http://github.com/jshemas/workinHard.git",
"web": "http://github.com/jshemas/workinHard"
},
"author": {
"name": "Josh Shemas",
"email": "[email protected]",
"url": "https://github.com/jshemas"
},
"scripts": {
"eslint:fix": "eslint . --ext .js --fix",
"eslint": "eslint . --ext .js",
"start": "node app.js",
"workin-hard": "node app.js"
},
"keywords": [
"fun",
"games",
"hacker typer",
"hacker"
]
}