forked from royriojas/esformatter-jsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.86 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
84
85
86
{
"name": "esformatter-jsx",
"version": "4.1.3",
"description": "esformatter plugin: format javascript files that contain React JSX blocks",
"repository": "royriojas/esformatter-jsx",
"license": "MIT",
"author": {
"name": "Roy Riojas",
"url": "http://royriojas.com"
},
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"engines": {
"node": ">=0.10.0"
},
"prepush": [
"npm run check"
],
"precommit": [
"npm run check"
],
"scripts": {
"beautify": "esbeautifier 'index.js' 'lib/**/*.js' 'specs/**/*.spec.js'",
"beautify-check": "esbeautifier -k 'index.js' 'lib/**/*.js' 'specs/**/*.spec.js'",
"eslint": "eslinter 'index.js' 'lib/**/*.js' 'specs/**/*.spec.js'",
"test": "mocha-runner 'specs/**/*.spec.js'",
"cover": "istanbul cover -x 'specs/**/*.spec.js' mocha-runner 'specs/**/*.spec.js' html text-summary",
"watch": "npm run cover && watch-spawn -p 'specs/**/*.spec.js' -p 'index.js' -p npm run cover",
"lint": "npm run beautify && npm run eslint && npm test",
"check": "npm run beautify-check && npm run eslint && npm test",
"changelog": "changelogx -f markdown -o ./changelog.md",
"do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
"install-hooks": "prepush install && changelogx install-hook && precommit install",
"pre-v": "npm run check",
"post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
"bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
"bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
"bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
"exec-demo": "cd demo && node runner.js"
},
"keywords": [
"esformatter-plugin",
"esformatter",
"jsx",
"react jsx",
"AST",
"codestyle",
"react jsx"
],
"peerDependencies": {},
"dependencies": {
"babylon": "6.1.21",
"esformatter-ignore": "^0.1.3",
"extend": "^2.0.1",
"fresh-falafel": "^1.2.0",
"js-beautify": "^1.5.10"
},
"devDependencies": {
"changelogx": "^1.0.18",
"esbeautifier": "^3.2.0",
"esformatter": "0.8.1",
"eslinter": "^3.2.0",
"istanbul": "^0.3.17",
"mocha-runner": "^1.0.8",
"precommit": "^1.2.0",
"prepush": "^3.1.8",
"proxyquire": "^1.6.0",
"read-json-sync": "^1.1.0",
"watch-spawn": "^1.0.3"
},
"changelogx": {
"ignoreRegExp": [
"BLD: Release",
"DOC: Generate Changelog",
"Generated Changelog"
],
"issueIDRegExp": "#(\\d+)",
"commitURL": "https://github.com/royriojas/esformatter-jsx/commit/{0}",
"authorURL": "https://github.com/{0}",
"issueIDURL": "https://github.com/royriojas/esformatter-jsx/issues/{0}",
"projectName": "esformatter-jsx"
}
}