forked from HowProgrammingWorks/hpw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 860 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
{
"name": "hpw",
"version": "0.0.1",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Laboratory Work Generator and Checker",
"license": "MIT",
"keywords": [
"javascript",
"programming",
"node.js"
],
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/HowProgrammingWorks/Labs"
},
"bugs": {
"url": "https://github.com/HowProgrammingWorks/Labs/issues",
"email": "[email protected]"
},
"main": "./bin/hpw.js",
"bin": {
"hpw": "./bin/hpw.js"
},
"scripts": {
"install": "node ./bin/install.js",
"test": "npm run lint",
"lint": "eslint ."
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"metasync": "^0.3.7",
"concolor": "^0.1.4"
},
"devDependencies": {
"eslint": "^4.3.0"
}
}