-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "matium",
"version": "0.3.0",
"repository": "",
"author": "Boubacar Barry <bouba@hackages.io>",
"license": "MIT",
"bin": {
"matium": "./build/index.js"
},
"scripts": {
"start": "yarn build && node ./build/index.js",
"dev": "yarn build && npm i -g",
"prepublishOnly": "yarn build",
"prebuild": "rm -r build || true",
"build": "babel src --copy-files --out-dir build",
"format": "prettier --single-quote --bracket-spacing=false --write 'src/**/*.js'",
"precommit": "lint-staged"
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.0",
"chalk": "^2.1.0",
"commander": "^2.11.0",
"conf": "^1.2.0",
"cross-spawn": "^5.1.0",
"debug": "^3.0.1",
"fs-extra": "^4.0.1",
"gfm-code-block-regex": "^1.0.0",
"gfm-code-blocks": "^1.0.0",
"github-base": "^0.5.4",
"gray-matter": "^3.0.6",
"lodash": "^4.17.4",
"medium-sdk": "^0.0.4",
"printf": "^0.2.5",
"readline-sync": "^1.4.7",
"slugid": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.4.1",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"prettier": "^1.6.1"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --bracket-spacing=false",
"eslint --max-warnings 1",
"git add"
]
}
}