forked from wl-buildingtools/nightfall
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "Nightfall",
"version": "1.0.0",
"description": "A solution to enable standard ERC-20 and ERC-721 tokens to be transacted on the Ethereum blockchain with complete privacy",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fix": "npm run format && npm run lint -- --fix",
"format": "prettier --write \"**/*.{json,css,scss,md,html}\"",
"lint": "eslint .",
"lint:md": "markdownlint -i node_modules -i build ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/EYBlockchain/nightfall.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/EYBlockchain/nightfall/issues"
},
"homepage": "https://github.com/EYBlockchain/nightfall#readme",
"dependencies": {
"typescript": "^2.4.2"
},
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"eslint": "^5.15.2",
"eslint-config-codfish": "^2.5.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.6",
"markdownlint-cli": "^0.16.0",
"prettier": "^1.16.4",
"solhint": "^1.5.1"
}
}