forked from justinribeiro/lite-youtube
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "@slightlyoff/lite-vimeo",
"description": "A web component that loads Vimeo embed iframes faster. ShadowDom based version of Paul Irish' concept.",
"author": "Alex Russell <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:slightlyoff/lite-vimeo.git"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint *.ts --ignore-path .gitignore",
"lint:prettier": "prettier --check *.ts --ignore-path .gitignore",
"prepublishOnly": "npm run build"
},
"files": [
"lite-vimeo.d.ts",
"lite-vimeo.js",
"lite-vimeo.js.map"
],
"license": "MIT",
"version": "0.1.2",
"main": "lite-vimeo.js",
"module": "lite-vimeo.js",
"types": "lite-vimeo.d.ts",
"keywords": [
"web components",
"vimeo"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-lit": "^1.2.0",
"prettier": "^2.0.0",
"typescript": "^3.8.0"
}
}