This repository has been archived by the owner on Sep 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
83 lines (83 loc) · 2.25 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "solmd",
"version": "0.4.0",
"description": "Markdown documentation generator for Solidity",
"engines": {
"node": ">=6"
},
"main": "lib/index.js",
"scripts": {
"dev": "$(npm bin)/babel src -w -d lib",
"test": "$(npm bin)/nyc --reporter=html --reporter=text mocha --require @babel/register --require @babel/polyfill",
"coverage": "$(npm bin)/nyc report --reporter=text-lcov | $(npm bin)/coveralls",
"build": "rm -rf lib/* && $(npm bin)/babel src -d lib",
"prepublishOnly": "npm run build",
"lint": "$(npm bin)/eslint src/ test/",
"precommit": "npm run lint && npm run test",
"semantic-release": "semantic-release"
},
"bin": {
"solmd": "./lib/bin/solmd.js"
},
"keywords": [
"solidity",
"documentation",
"markdown",
"generator",
"natspec"
],
"repository": {
"type": "git",
"url": "https://github.com/dpilch/solmd.git"
},
"author": "Dane Pilcher <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/register": "^7.4.0",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"sinon": "^7.2.7",
"semantic-release": "^15.13.3"
},
"dependencies": {
"dot": "^1.1.2",
"keccakjs": "^0.2.3",
"minimist": "^1.2.0",
"solc": "^0.5.6"
},
"files": [
"package.json",
"package-lock.json",
"LICENSE",
"lib/"
],
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"commit-msg": "commitlint -e"
}
},
"release": {
"branch": "master"
}
}