-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "parcel-plugin-inject-style-tag",
"version": "1.0.7",
"description": "Inject styles into the DOM using multiple <style> tags",
"main": "dist/index.js",
"scripts": {
"build": "ttsc -p tsconfig.json",
"release": "dotenv semantic-release",
"test": "node --require babel-register-ts test",
"coverage": "nyc --reporter lcov --reporter text node test",
"postcoverage": "dotenv codecov",
"eslint": "eslint 'src/**/*.[tj]s' 'types/**/*.[tj]s'",
"toc": "doctoc README.md --title '**Table of Contents**'",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndyOGo/parcel-plugin-inject-style-tag.git"
},
"keywords": [
"parcel",
"parcel-plugin",
"plugin",
"css",
"inject-css",
"inject-style",
"inject-style-tag",
"style-tag"
],
"author": "Andreas Deuschlinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndyOGo/parcel-plugin-inject-style-tag/issues"
},
"homepage": "https://github.com/AndyOGo/parcel-plugin-inject-style-tag#readme",
"peerDependencies": {
"parcel-bundler": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/plugin-transform-object-assign": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.1",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/parcel-bundler": "^1.12.4",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-register-ts": "^7.0.0",
"codecov": "^3.8.1",
"doctoc": "^2.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.7",
"husky": "^7.0.0",
"lint-staged": "^10.5.2",
"nyc": "^15.1.0",
"parcel-bundler": "1",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"semantic-release": "^17.3.0",
"ts-transform-default-export": "^1.0.3",
"ttypescript": "^1.5.12",
"type-fest": "^0.21.3",
"typedoc-plugin-markdown": "^3.2.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@jsdevtools/file-path-filter": "^3.0.2",
"clone": "^2.1.2"
}
}