-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
46 lines (46 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
{
"name": "korkut",
"version": "1.2.0",
"description": "Quick and simple image processing at the command line.",
"main": "lib/index.js",
"license": "MIT",
"author": {
"name": "Oğuzhan İNAN",
"email": "oguzhan3488@gmail.com",
"url": "https://oguzhaninan.gitlab.io"
},
"preferGlobal": true,
"bin": {
"korkut": "./bin/korkut"
},
"repository": {
"type": "git",
"url": "https://github.com/oguzhaninan/korkut.git"
},
"scripts": {
"start": "yarn run build && clear && node lib/index.js",
"test": "ava-ts",
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts src/*.ts",
"lint:fix": "yarn run lint --fix",
"clean": "rm -rf lib/*"
},
"dependencies": {
"chalk-pipe": "^1.3.0",
"easyimage": "^3.1.0",
"gm": "^1.23.1",
"inquirer": "^6.1.0",
"ora": "^3.0.0"
},
"devDependencies": {
"@types/gm": "^1.18.0",
"@types/inquirer": "^0.0.43",
"@types/node": "^10.7.1",
"@types/ora": "^1.3.4",
"ava": "^0.25.0",
"ava-ts": "^0.25.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}