generated from Alorel/basic-library-template-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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
{
"name": "@alorel/rollup-plugin-constructable-css",
"version": "1.0.0",
"engines": {
"node": ">=12.0.0"
},
"description": "Rollup plugin for loading css files as CSSStyleSheet objects",
"main": "index.cjs.js",
"module": "index.es.js",
"repository": "https://github.com/Alorel/rollup-plugin-constructable-css.git",
"types": "index.d.ts",
"typings": "index.d.ts",
"author": "Arturas Molcanovas <[email protected]>",
"license": "MIT",
"scripts": {
"rollup": "rollup -c",
"release": "semantic-release",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "yarn run lint --fix",
"rollup:watch": "yarn run rollup --watch",
"typecheck": "tsc --noEmit --outDir dist",
"typecheck:watch": "yarn run typecheck --watch",
"test": "del-cli coverage && cross-env 'TS_NODE_COMPILER_OPTIONS={\"module\":\"commonjs\"}' nyc mocha",
"test:watch": "yarn run test --watch"
},
"dependencies": {
"@rollup/pluginutils": "^4.0.0",
"magic-string": "^0.25.7"
},
"peerDependencies": {
"rollup": "^2.0.0"
},
"devDependencies": {
"@alorel-personal/conventional-changelog-alorel": "^2.1.3",
"@alorel/eslint-config-base": "^1.0.8",
"@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",
"@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/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"del-cli": "^3.0.1",
"eslint": "^7.9.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"rollup": "^2.28.1",
"rollup-plugin-typescript2": "^0.27.2",
"semantic-release": "^17.1.2",
"source-map-support": "^0.5.19",
"terser": "^5.3.2",
"tmp": "^0.2.1",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
}
}