-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 951 Bytes
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 951 Bytes
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
{
"name": "html2slack",
"version": "1.9.1",
"description": "A js library to convert a subset of HTML to JSON formatted Slack attachments",
"main": "src/lib",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aidojs/html2slack.git"
},
"bugs": {
"url": "https://github.com/aidojs/html2slack/issues"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint --ignore-path .gitignore ./"
},
"engines": {
"node": ">=8.0.0"
},
"author": "Damien BUTY",
"license": "ISC",
"dependencies": {
"fast-html-parser": "^1.0.1",
"inline-elements": "^1.1.2",
"number-to-letter": "^1.0.1",
"nyc": "^13.3.0",
"pad": "^2.1.0",
"pad-left": "^2.1.0",
"romanize": "^1.1.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"jest": "^22.4.4"
}
}