forked from justinribeiro/code-block
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.03 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
{
"name": "@sherby/code-block",
"version": "2.0.3",
"description": "A web component that utilizes Prism.js and LitElement to display nicely formatted code.",
"keywords": [
"code",
"code-block",
"element",
"language",
"lit",
"lit-element",
"lit-html",
"prismjs",
"sherby",
"web components"
],
"homepage": "https://github.com/SherbyElements/code-block",
"bugs": {
"url": "https://github.com/SherbyElements/code-block/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SherbyElements/code-block.git"
},
"license": "MIT",
"contributors": [
{
"name": "Justin Ribeiro",
"email": "justin@justinribeiro.com",
"url": "https://justinribeiro.com/"
},
{
"name": "Benjamin Rancourt",
"email": "Benjamin.Rancourt@USherbrooke.ca",
"url": "https://www.benjaminrancourt.ca/"
}
],
"main": "code-block.js",
"files": [
"code-block.js",
"prismjs-code-block.js",
"src/*.js"
],
"scripts": {
"format": "npm-run-all format:*",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "npm run lint:prettier -- --write",
"start": "web-dev-server --node-resolve --watch --open",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint . --ext html,js,json --cache",
"lint:prettier": "prettier **/*.{js,json,md} --check"
},
"prettier": "prettier-config-udes",
"dependencies": {
"lit": "^2.0.0-rc.2",
"prismjs": "^1.23.0"
},
"devDependencies": {
"@polymer/iron-demo-helpers": "^3.1.0",
"@web/dev-server": "^0.1.17",
"@webcomponents/webcomponentsjs": "^2.5.0",
"babel-eslint": "^10.1.0",
"eslint-config-udes": "^1.0.1",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-lit": "^1.4.1",
"eslint-plugin-markdown": "^2.1.0",
"eslint-plugin-prettier": "^3.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"prettier-config-udes": "^1.0.0"
},
"peerDependencies": {
"prismjs": "^1.23.0"
}
}