forked from manuelpires/nft-collection-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 924 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
{
"name": "nft-collection-generator",
"version": "1.1.0",
"description": "Generates images and metadata for a collection of NFTs.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "node index.js",
"test": "mocha *.test.js",
"update-base-uri": "node scripts/update-base-uri.js",
"create-gif": "node scripts/create-gif.js",
"calculate-hash": "node scripts/calculate-hash.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuelpires/nft-collection-generator.git"
},
"author": "Manuel Pires",
"license": "MIT",
"bugs": {
"url": "https://github.com/manuelpires/nft-collection-generator/issues"
},
"homepage": "https://github.com/manuelpires/nft-collection-generator#readme",
"dependencies": {
"canvas": "^2.8.0",
"gif-encoder-2": "^1.0.5"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.1"
}
}