-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
71 lines (71 loc) · 1.81 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "easyimage",
"version": "3.1.1",
"description": "A promise-based, user-friendly module for processing images in Node.js",
"license": "MIT",
"main": "lib/easyimage.js",
"types": "types/easyimage.d.ts",
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "tslint -c tslint.json src/**/*.ts test/specs/*.ts",
"mocha": "mocha -r ts-node/register --timeout 5000 test/specs/*spec.ts",
"build": "npm run clean && npm run src && npm run doc",
"doc": "typedoc src/execute.ts src/options.ts src/commands/* src/errors/*",
"src": "tsc",
"clean": "rimraf ./docs/* && rimraf ./lib/*"
},
"author": {
"name": "Hage Yaapa",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Kevin Gravier",
"email": "[email protected]",
"web": "https://github.com/mrkmg"
}
],
"keywords": [
"imagemagick",
"image",
"graphics",
"process",
"convert",
"resize",
"crop",
"thumbnail",
"promise"
],
"repository": {
"type": "git",
"url": "https://github.com/hacksparrow/node-easyimage.git"
},
"dependencies": {
"bluebird": "^3.5.1",
"mkdirp": "^0.5.0",
"nanoid": "^1.0.2",
"tslib": "^1.8.1",
"typescript": "^3.3.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.19",
"@types/chai": "^4.1.0",
"@types/chai-as-promised": "^7.1.0",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^2.2.46",
"@types/nanoid": "^1.0.0",
"@types/node": "=4",
"@types/rimraf": "^2.0.2",
"@types/sinon": "^4.1.3",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^4.1.0",
"rimraf": "^2.6.2",
"sinon": "^4.1.6",
"sinon-chai": "^2.14.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typedoc": "^0.14.2"
}
}