-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.16 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
{
"name": "rollup-plugin-typed-css-modules",
"description": "a rollup plugin to create css modules typescript declaration files",
"version": "0.0.4",
"author": "gzliew",
"main": "dist/index.commonjs.js",
"module": "dist/index.module.js",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf coverage dist",
"build": "rollup -c",
"lint": "eslint *.js",
"format": "prettier --write .",
"lint:staged": "lint-staged",
"postpublish": "yarn clean",
"prepublishOnly": "yarn lint && yarn test && yarn clean && yarn build",
"test": "jest",
"postinstall": "is-ci || husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GZLiew/typed-css-modules-rollup-plugin.git"
},
"files": [
"dist",
"index.d.ts",
"readme.md"
],
"keywords": [
"rollup",
"plugin",
"typescript",
"css-modules",
"rollup-plugin",
"type",
"types",
"typed",
"css",
"modules",
"ts"
],
"engines": {
"node": ">=16"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GZLiew/typed-css-modules-rollup-plugin/issues"
},
"homepage": "https://github.com/GZLiew/typed-css-modules-rollup-plugin#readme",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"codecov": "^3.8.3",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"replace-in-file": "^6.3.5",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-filesize": "^9.1.2"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"colorette": "^2.0.19",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"is-plain-object": "^5.0.0",
"typed-css-modules": "^0.7.2"
}
}