forked from MetaMask/template-snap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "@metamask/template-snap",
"version": "0.7.0",
"description": "The 'Hello, world!' of MetaMask Snaps.",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snap-template.git"
},
"license": "MIT",
"main": "src/index.js",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"build:clean": "yarn clean && yarn build",
"build:website": "node ./scripts/build-website.js",
"build": "mm-snap build",
"serve": "mm-snap serve",
"clean": "rimraf dist/*",
"test": "echo 'TODO'",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:changelog": "yarn auto-changelog validate"
},
"devDependencies": {
"@metamask/auto-changelog": "^2.5.0",
"@metamask/eslint-config": "^8.0.0",
"@metamask/eslint-config-jest": "^8.0.0",
"@metamask/eslint-config-nodejs": "^8.0.0",
"@metamask/snaps-cli": "^0.15.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"mkdirp": "^1.0.4",
"prettier": "^2.3.2",
"rimraf": "^3.0.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=14.0.0"
}
}