-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 2.7 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "slack-to-html",
"version": "1.0.0",
"description": "Render Slack markdown as HTML",
"main": "dist/bundle.js",
"scripts": {
"update-emoji": "node updateEmoji.js",
"print-patterns": "npm run build && node printBuiltSlackHawkDownRegExps.js",
"compile": "babel src --presets babel-preset-es2015 --out-dir dist",
"build": "npm run update-emoji && npm run compile && browserify dist/index.js --standalone slack-hawk-down -o dist/bundle.js",
"test": "npm run update-emoji && mocha --compilers js:babel-core/register",
"eslint": "eslint src/index.js",
"precommit": "npm run eslint",
"prepublish": "npm run precommit && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hectorbenitez/slack-to-html.git"
},
"keywords": [
"slack",
"markdown"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hectorbenitez/slack-to-html/issues"
},
"homepage": "https://github.com/hectorbenitez/slack-to-html#readme",
"dependencies": {
"xregexp": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-babili": "0.0.12",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^16.1.1",
"chai": "^3.5.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"husky": "^0.13.2",
"mocha": "^3.4.1"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"settings": {
"import/resolver": "node"
},
"globals": {
"_": true
},
"rules": {
"comma-dangle": 0,
"global-require": 0,
"max-len": 0,
"import/no-mutable-exports": 0,
"arrow-body-style": 0,
"no-return-assign": 0,
"object-shorthand": 0,
"linebreak-style": 0,
"newline-per-chained-call": 0,
"new-cap": 0,
"no-multi-spaces": 0,
"no-mixed-operators": 0,
"arrow-parens": [
2,
"always"
],
"semi": [
2,
"never"
],
"quotes": [
2,
"single"
],
"no-console": [
1,
{
"allow": [
"warn",
"error"
]
}
],
"no-param-reassign": [
2,
{
"props": false
}
],
"no-continue": 0
}
}
}