-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.85 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.85 KB
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
{
"name": "@phantomstudios/css-components",
"description": "At its core, css-components is a simple wrapper around standard CSS. It allows you to write your CSS how you wish then compose them into a component ready to be used in React.",
"version": "0.4.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/phantomstudios/css-components#readme",
"repository": {
"type": "git",
"url": "https://github.com/phantomstudios/css-components.git"
},
"bugs": {
"url": "https://github.com/phantomstudios/css-components/issues"
},
"keywords": [
"react",
"css",
"styling",
"components"
],
"bin": {
"css-components": "lib/cli/index.js"
},
"scripts": {
"build": "tsc && npm run build:shebang",
"build:types": "tsc --emitDeclarationOnly",
"build:shebang": "echo '#!/usr/bin/env node' | cat - ./lib/cli/index.js > temp && mv temp ./lib/cli/index.js",
"prepublishOnly": "npm run build",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"test:cli": "npm run build && node lib/cli/index.js --css \"test/**/*.{css,scss}\"",
"test:cli-css": "npm run build && node lib/cli/index.js --css \"test/**/*.css\"",
"test:cli-scss": "npm run build && node lib/cli/index.js --css \"test/**/*.scss\"",
"coverage": "jest --coverage",
"lint": "NODE_ENV=test npm-run-all --parallel lint:*",
"lint:js": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:format": "prettier \"**/*.{md,html,yaml,yml}\" --check",
"lint:type-check": "tsc --noEmit",
"fix": "npm-run-all --sequential fix:*",
"fix:js": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"fix:format": "prettier \"**/*.{md,html,yaml,yml}\" --write",
"depcheck": "npx npm-check --update"
},
"author": "John Chipps-Harding (john.chipps-harding@phntms.com)",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@eslint/js": "^9.28.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.23",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"expect-type": "^1.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^30.0.5",
"jiti": "^2.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.0.3",
"typescript": "^5.8.3"
},
"dependencies": {
"glob": "^11.0.2",
"sass": "^1.62.0",
"yargs": "^18.0.0"
}
}