-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "craft-embedded-assets",
"version": "5.4.0",
"description": "Manage YouTube videos, Instagram photos and more as first class assets",
"private": true,
"main": "webpack.config.js",
"scripts": {
"build-dev": "./node_modules/.bin/ts-standard && ./node_modules/.bin/webpack --mode development",
"build": "./node_modules/.bin/ts-standard && ./node_modules/.bin/webpack --mode production",
"check-style": "./node_modules/.bin/ts-standard && (ddev composer run-script check-cs || composer run-script check-cs)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spicywebau/craft-embedded-assets.git"
},
"keywords": [
"cms",
"craftcms",
"plugin",
"embed",
"assets",
"youtube",
"vimeo",
"instagram"
],
"author": "Spicy Web",
"contributors": [
"Benjamin Fleming"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/spicywebau/craft-embedded-assets/issues"
},
"homepage": "https://github.com/spicywebau/craft-embedded-assets#readme",
"devDependencies": {
"@types/jquery": "^3.5.14",
"css-loader": "^6.7.1",
"mini-css-extract-plugin": "^2.6.1",
"pre-commit": "^1.2.2",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"source-map-loader": "^4.0.0",
"ts-loader": "^9.3.1",
"ts-standard": "^12.0.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"ts-standard": {
"ignore": [
"src/assets/*/dist/**/*.js"
]
},
"pre-commit": [
"check-style"
]
}