-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "mosaic-node-generator",
"version": "1.1.5",
"description": "A Node module to generate mosaic images.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run test:ts && npm run test:js",
"build": "tsc",
"test:ts": "mocha -r ts-node/register test/ts/**/*.spec.ts",
"test:js": "mocha --reporter spec test/js/**/*.spec.js"
},
"bin": {
"mosaic-node-generator": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dellos7/mosaic-node-generator.git"
},
"author": "David López Castellote",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dellos7/mosaic-node-generator/issues"
},
"homepage": "https://github.com/Dellos7/mosaic-node-generator#readme",
"keywords": [
"mosaic",
"collage",
"photo",
"picture",
"create",
"creator",
"generate",
"generator",
"node"
],
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"ts-node": "^6.0.3",
"typescript": "^2.8.3"
},
"dependencies": {
"@types/node": "^6.0.110",
"commander": "^2.16.0",
"jimp": "^0.2.28"
}
}