forked from yhatt/jsx-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.8 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
{
"name": "@speee-js/jsx-slack",
"version": "1.7.0",
"description": "Build JSON object for Slack Block Kit surfaces from readable JSX",
"author": {
"name": "Yuki Hattori",
"url": "https://github.com/yhatt"
},
"repository": {
"type": "git",
"url": "https://github.com/speee/jsx-slack"
},
"license": "MIT",
"keywords": [
"slack",
"block-kit",
"jsx",
"notification",
"bot",
"modal"
],
"homepage": "https://github.com/speee/jsx-slack#readme",
"bugs": {
"url": "https://github.com/speee/jsx-slack/issues"
},
"engines": {
"node": ">=10"
},
"main": "lib/index.js",
"module": "module/index.js",
"sideEffects": false,
"types": "types/index.js",
"files": [
"lib/",
"module/",
"types/"
],
"scripts": {
"build": "run-p build:*",
"build:cjs": "rimraf lib && tsc",
"build:module": "rimraf module && tsc --module esnext --outDir module",
"check:audit": "yarn audit",
"check:format": "yarn -s format -c",
"check:ts": "tsc --noEmit",
"demo": "parcel demo/index.html --out-dir demo/build",
"demo:build": "rimraf .cache demo/build && parcel build demo/index.html --out-dir demo/build --no-source-maps",
"format": "prettier \"**/*.{css,html,js,json,jsx,md,scss,ts,tsx,yaml,yml}\"",
"format:write": "yarn -s format --write",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"measure-font": "node ./tools/measure-font.js",
"prepack": "npm-run-all -p check:* lint test:coverage -p build:* types",
"preversion": "run-p check:* lint test:coverage",
"test": "jest",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect ./node_modules/.bin/jest -i",
"types": "rimraf types && tsc --declaration --emitDeclarationOnly --outDir types",
"version": "node ./tools/version.js && git add -A CHANGELOG.md"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"codecov": "^3.6.4",
"codemirror": "^5.52.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.2.7",
"jest-junit": "^10.0.0",
"lodash.debounce": "^4.0.8",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"prettier": "^2.0.4",
"puppeteer": "^2.1.1",
"rimraf": "^3.0.1",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@slack/types": "^1.5.0",
"hast-util-to-mdast": "^7.0.0",
"he": "^1.2.0",
"htm": "^3.0.3",
"mdast-util-phrasing": "^2.0.0",
"turndown": "^5.0.3",
"unist-util-parents": "^1.0.3",
"unist-util-visit": "^2.0.2"
}
}