-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.86 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": "create-solidity-contract",
"description": "Set up a solidity smart contract project with a complete set of tools ready to use by running one command",
"version": "0.0.4",
"author": {
"name": "Gerardo Nardelli",
"url": "https://github.com/patitonar"
},
"bin": {
"create-solidity-contract": "./dist/index.js"
},
"bugs": {
"url": "https://github.com/patitonar/create-solidity-contract/issues"
},
"scripts": {
"build": "ncc build ./src/index.ts --out dist/",
"clean": "shx rm -rf ./dist",
"lint": "tslint --config tslint.json --project .",
"prettier": "prettier --config .prettierrc --write '**/*.{js,json,md,sol,ts}'",
"prettier:list-different": "prettier --config .prettierrc --list-different '**/*.{js,json,md,sol,ts}'",
"watch": "ncc build ./src/index.ts --out dist/ --watch"
},
"devDependencies": {
"@types/got": "9.6.11",
"@types/node": "^14.0.5",
"@types/prompts": "2.0.8",
"@types/tar": "4.0.3",
"@zeit/ncc": "^0.22.2",
"chalk": "^4.0.0",
"commander": "^5.1.0",
"got": "^11.1.4",
"husky": "^4.0.7",
"make-dir": "^3.0.0",
"prettier": "^2.0.5",
"promisepipe": "^3.0.0",
"prompts": "^2.3.0",
"shx": "^0.3.2",
"tar": "^6.0.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.9.3",
"update-check": "^1.5.3"
},
"files": [
"/dist"
],
"homepage": "https://github.com/patitonar/create-solidity-contract",
"keywords": [
"ethereum",
"create",
"solidity",
"project",
"smart",
"contracts",
"tools",
"setup",
"boilerplate",
"template"
],
"license": "MIT",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/patitonar/create-solidity-contract"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn build"
}
}
}