-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "generator-venom-scaffold",
"version": "0.1.4",
"description": "Yeoman generator to scaffold ready-to-use projects for smart contract developing on Venom-like blockchains.",
"homepage": "https://github.com/venom-blockchain/generator-venom-scaffold",
"files": [
"dist"
],
"license": "Apache-2.0",
"main": "dist/generators/app/index.js",
"bin": "dist/generators/app/index.js",
"keywords": [
"yeoman-generator",
"venom"
],
"scripts": {
"build": "npm run compile && npm run copy-files",
"compile": "tsc -p .",
"copy-files": "cpy \"generators/**/templates/**\" dist/generators/",
"format": "prettier --write .",
"lint": "npx eslint .",
"clean": "rimraf ./dist",
"prepare": "husky install"
},
"devDependencies": {
"@types/validate-npm-package-name": "^4.0.0",
"@types/yeoman-generator": "^5.2.11",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cpy-cli": "4.2.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"path": "^0.12.7",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
},
"dependencies": {
"validate-npm-package-name": "^5.0.0",
"yeoman-generator": "^5.7.0"
},
"engines": {
"npm": ">= 4.0.0"
}
}