generated from Alorel/basic-library-template-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 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
{
"name": "@alorel/preact-shadow-root",
"version": "1.1.0",
"description": "Renders components in a v1 ShadowRoot",
"main": "index.js",
"esm5": "index.esm5.js",
"module": "index.esm5.js",
"esm2015": "index.esm2015.js",
"jsdelivr": "index.umd.min.js",
"browser": "index.umd.js",
"repository": "https://github.com/Alorel/preact-shadow-root.git",
"types": "index.d.ts",
"typings": "index.d.ts",
"author": "Arturas Molcanovas <[email protected]>",
"license": "MIT",
"scripts": {
"rollup": "rollup -c",
"rollup:prop-types": "rollup -c rollup.proptypes.config.js",
"release": "semantic-release",
"lint": "eslint . --ext .ts,.js,.tsx",
"doctoc": "doctoc README.md --github",
"lint:fix": "yarn run lint --fix",
"rollup:watch": "yarn run rollup --watch",
"test": "cross-env TS_NODE_PROJECT=tsconfig.test.json node -r ts-node/register node_modules/.bin/jest",
"test:watch": "yarn run test --watch",
"typecheck": "tsc --noEmit --outDir dist",
"typecheck:watch": "yarn run typecheck --watch"
},
"dependencies": {
"@alorel/commons-constructable-css": "^1.0.0",
"tslib": "^1.9.0 || ^2.0.0"
},
"peerDependencies": {
"preact": "^10.0.0"
},
"devDependencies": {
"@alorel-personal/conventional-changelog-alorel": "^2.1.3",
"@alorel/eslint-config-base": "^1.0.7",
"@alorel/eslint-config-preact": "^1.0.2",
"@alorel/eslint-config-typescript": "^1.0.8",
"@alorel/rollup-plugin-clean": "^1.0.0",
"@alorel/rollup-plugin-copy": "^1.0.1",
"@alorel/rollup-plugin-copy-pkg-json": "^1.0.3",
"@alorel/rollup-plugin-dts": "^2.0.1",
"@alorel/rollup-plugin-threaded-terser": "^1.1.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@types/enzyme": "^3.10.6",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"cross-env": "^7.0.2",
"doctoc": "^1.4.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^2.2.3",
"eslint": "^7.9.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.4.2",
"jest-preset-preact": "^4.0.2",
"lodash": "^4.17.20",
"preact": "^10.4.8",
"prop-types": "^15.7.2",
"rollup": "^2.27.1",
"rollup-plugin-typescript2": "^0.27.2",
"semantic-release": "^17.1.2",
"terser": "^5.3.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
}
}