-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "semitransferable-token",
"version": "1.0.0",
"description": "(remember to `git submodule update --init --recursive` after cloning)",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mangrovedao/semitransferable-token.git"
},
"author": "Adrien Husson",
"license": "AGPL3",
"bugs": {
"url": "https://github.com/mangrovedao/semitransferable-token/issues"
},
"homepage": "https://github.com/mangrovedao/semitransferable-token#readme",
"devDependencies": {
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19"
},
"prettier": {
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false,
"explicitTypes": "preserve"
}
}
]
}
}