forked from dpilch/solmd
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "solmd",
"version": "0.1.6",
"description": "Markdown documentation generator for Solidity",
"engines": {
"node": ">=4"
},
"main": "lib/index.js",
"scripts": {
"dev": "$(npm bin)/babel src -w -d lib",
"test": "$(npm bin)/mocha",
"build": "rm -rf lib/* && $(npm bin)/babel src -d lib",
"prepublishOnly": "npm run build",
"lint": "$(npm bin)/eslint src/ test/",
"precommit": "./node_modules/pre-commit/hook"
},
"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 <danepilch@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "^4.0.1",
"pre-commit": "^1.2.2"
},
"dependencies": {
"keccakjs": "^0.2.1",
"markdown-table": "^1.1.1",
"minimist": "^1.2.0"
},
"pre-commit": [
"lint",
"test"
]
}