-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
{
"name": "babel-plugin-shadow-shim",
"version": "0.0.0-semantically-released",
"description": "A babel plugin to helps complete apps to run inside a ShadowRoot, by automatically rewriting DOM code to look inside the shadow root.",
"main": "dist/bundle.js",
"scripts": {
"test": "jest",
"build": "webpack",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splashdust/babel-plugin-shadow-shim.git"
},
"files": [
"dist/"
],
"release": {
"branches": [
"main"
]
},
"keywords": [
"babel",
"shadow",
"dom",
"shadow",
"root"
],
"author": "Joacim Magnusson",
"license": "ISC",
"bugs": {
"url": "https://github.com/splashdust/babel-plugin-shadow-shim/issues"
},
"homepage": "https://github.com/splashdust/babel-plugin-shadow-shim#readme",
"peerDependencies": {
"@babel/core": "^7.20.12"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit"
}
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/generator": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"@babel/template": "^7.20.7",
"@babel/traverse": "^7.20.12",
"@babel/types": "^7.20.7",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/babel__core": "^7.20.0",
"@types/babel__generator": "^7.6.4",
"@types/babel__template": "^7.4.1",
"@types/babel__traverse": "^7.18.3",
"@types/babel-types": "^7.0.11",
"babel-plugin-tester": "^11.0.4",
"husky": "^8.0.3",
"jest": "^29.4.1",
"semantic-release": "^20.1.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
}
}