-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "chimi",
"version": "0.2.2",
"description": "Validate the JavaScript code of your Markdown files",
"bin": {
"chimi": "./bin/bin.js"
},
"scripts": {
"format": "yarn prettier --write '**/*.{js,json}'",
"format:changed": "pretty-quick",
"precommit": "pretty-quick --staged",
"release": "np",
"lint": "yarn eslint '**/*.js'",
"test": "jest ./tests",
"e2e": "jest ./e2e"
},
"author": "gillchristian <[email protected]>",
"contributors": ["fvictorio <[email protected]>"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Huemul/chimi.git"
},
"bugs": {
"url": "https://github.com/Huemul/chimi/issues"
},
"homepage": "https://github.com/Huemul/chimi#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babylon": "^6.18.0",
"chalk": "^1.1.3",
"chipa": "^0.2.1",
"common-tags": "^1.4.0",
"cosmiconfig": "^3.1.0",
"debug": "^3.1.0",
"meow": "^3.7.0",
"merge-source-map": "^1.0.4",
"ora": "^1.2.0",
"pluralize": "^4.0.0",
"ramda": "^0.23.0",
"recast": "^0.12.8",
"sanctuary": "^0.13.2",
"sanctuary-def": "^0.13.1",
"source-map": "^0.6.1",
"source-map-support": "^0.5.0"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.13.3",
"jest": "^21.2.1",
"jest-serializer-path": "^0.1.3",
"np": "^2.14.1",
"prettier": "^1.8.2",
"pretty-quick": "^1.2.3",
"shelljs": "^0.7.8"
}
}