This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
111 lines (111 loc) · 2.6 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
{
"name": "slack-hawk-down",
"version": "0.4.1",
"description": "Render Slack flavored markdown as HTML",
"main": "dist/bundle.js",
"scripts": {
"update-emoji": "node updateEmoji.js",
"compile": "babel src --presets babel-preset-es2015 --out-dir dist",
"build": "yarn run update-emoji && yarn run compile && browserify dist/index.js --standalone slack-hawk-down -o dist/bundle.js",
"test": "yarn run update-emoji && mocha --require babel-core/register",
"eslint": "eslint src/index.js",
"precommit": "yarn run eslint",
"prepublish": "yarn run precommit && yarn run test && yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swiftype/slack-hawk-down.git"
},
"keywords": [
"slack",
"markdown"
],
"author": "Alec Hoey",
"license": "MIT",
"bugs": {
"url": "https://github.com/swiftype/slack-hawk-down/issues"
},
"homepage": "https://github.com/swiftype/slack-hawk-down#readme",
"dependencies": {
"xregexp": "^4.2.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.23.0",
"babel-preset-babili": "0.1.4",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.22.0",
"babelify": "^10.0.0",
"browserify": "^16.1.1",
"chai": "^4.2.0",
"emoji-datasource": "^4.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.1",
"mocha": "^6.1.4",
"yarn": "^1.16.0"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": 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,
"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
}
}
}