-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "classgroup",
"version": "1.2.4",
"description": "A utility to keep your CSS classes in JS consistently and semantically grouped.",
"type": "module",
"main": "./commonjs/index.js",
"module": "./esm/index.js",
"types": "./ClassGroup.d.ts",
"scripts": {
"format": "prettier --write \"**/*.ts\" \"**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"tsc": "node_modules/.bin/tsc",
"commonjs/tsc": "node_modules/.bin/tsc commonjs/index.ts",
"release": "semantic-release --branches main"
},
"keywords": [
"css-in-js",
"className",
"css",
"classGroup",
"tailwind",
"tailwindcss",
"cubeCSS",
"apply"
],
"author": "iTech Media",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itech-media/classgroup.git"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"babel-jest": "^27.2.1",
"jest": "^27.2.1",
"prettier": "^2.5.0",
"semantic-release": "^22.0.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}