-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
57 lines (57 loc) · 1.14 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
51
52
53
54
55
56
57
{
"name": "programcli",
"version": "0.0.7",
"description": "",
"main": "main/main.js",
"bin": {
"program": "./bin/cli.js"
},
"scripts": {
"start": "electron main/main.js --not-packaged=true",
"dev": "electron main/main.js --not-packaged=true --debug=true"
},
"files": [
"bin",
"images",
"main",
"program"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sarthology/proGramCLI.git"
},
"keywords": [],
"author": "Sarthak Sharma (https://sarthak.it)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sarthology/proGramCLI/issues"
},
"homepage": "https://github.com/sarthology/proGramCLI#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1"
},
"dependencies": {
"croppie": "^2.6.4",
"electron": "4.0.1",
"fs-extra": "^8.1.0",
"handlebars": "^4.1.2",
"meow": "^5.0.0",
"update-notifier": "^3.0.0"
}
}