-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "solid-mustache",
"version": "4.5.0",
"description": "{{mustache}} templates compiling to Solidity",
"bin": "./bin/solid-mustache.js",
"main": "build/cjs/index.js",
"typings": "build/cjs/index.d.ts",
"module": "build/esm/index.js",
"files": [
"bin",
"build",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "yarn build",
"prebuild": "rimraf build",
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"check": "yarn check:prettier && yarn check:lint",
"check:lint": "eslint src test --ext .ts",
"check:prettier": "prettier \"(src|test)/**/*.ts\" --list-different",
"fix": "yarn fix:prettier && yarn fix:lint",
"fix:prettier": "prettier \"(src|test)/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "mocha",
"test:watch": "mocha -w",
"test:update": "UPDATE_SNAPSHOTS=true mocha -w"
},
"repository": "[email protected]:nftgp/solid-mustache.git",
"author": "Jan-Felix Schwarz",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@types/chai": "^4.3.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@types/prettier": "^2.4.3",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"ethers": "^5.5.2",
"hardhat": "^2.8.0",
"rimraf": "^3.0.2",
"solc": "^0.8.11",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@handlebars/parser": "^2.1.0",
"cosmiconfig": "^7.0.1",
"glob": "^7.2.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"yargs": "^17.3.1"
}
}