-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
34 lines (34 loc) · 917 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
{
"name": "photosaic",
"version": "0.2.1",
"license": "MIT",
"description": "Build beautiful mosaic images from input images and photos you provide.",
"main": "dist/Photosaic.js",
"repository": {
"type": "git",
"url": "https://github.com/whatl3y/photosaic"
},
"scripts": {
"build": "gulp build",
"postinstall": "npm run build",
"test": "NODE_ENV=test mocha -r ts-node/register --exit --recursive './src/**/*.spec.ts'"
},
"author": "Lance Whatley",
"dependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "^14.0.1",
"@types/sharp": "^0.25.0",
"gulp": "^4.0.2",
"gulp-plumber": "^1.2.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"minimist": "^1.2.5",
"sharp": "^0.25.4",
"typescript": "^3.9.2"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"mocha": "^7.1.2",
"ts-node": "^8.10.2"
}
}