-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "css-style-inject",
"version": "1.0.0",
"description": "This is a plugin to inject styles to document head dynamically and it checks injections by unique id to prevent style duplication.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kherP/css-style-inject.git"
},
"bugs": {
"url": "https://github.com/kherP/css-style-inject/issues"
},
"homepage": "https://github.com/kherP/css-style-inject/",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"husky-init": "husky init",
"release": "semantic-release",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "husky install"
},
"keywords": [
"css",
"inject",
"typescript",
"javascript",
"plugin"
],
"author": "Kher Phay Chang",
"license": "ISC",
"dependencies": {
"typescript": "^4.1.5"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"husky": "^5.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.39.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.3.9"
},
"release": {
"pkgRoot": "dist",
"branches": [
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}