-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "class-prefixer",
"version": "0.0.1",
"description": "A suite of tools to automatically prefix and contain CSS class names in a variety of file type",
"private": true,
"author": {
"name": "Liip",
"url": "https://www.liip.ch/"
},
"repository": {
"type": "git",
"url": "https://github.com/liip/class-prefixer.git"
},
"scripts": {
"postinstall": "npm run build",
"dev": "lerna run dev",
"build": "lerna run build",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"format": "lerna run format",
"format:fix": "lerna run format:fix",
"test": "lerna run test",
"typecheck": "lerna run typecheck",
"version": "lerna version --create-release github",
"publish": "lerna publish from-git"
},
"workspaces": [
"packages/ast-parsers",
"packages/class-prefixer-ast-visitor",
"packages/class-prefixer-core",
"packages/esbuild-plugin-ast",
"packages/esbuild-plugin-ast-vue",
"packages/postcss-class-prefixer",
"packages/rollup-plugin-ast-transform"
],
"devDependencies": {
"@jest/types": "^29.6.3",
"@liip-lausanne/eslint-config": "^1.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}