UNPKG

1.29 kBJSONView Raw
1{
2 "name": "@erickmerchant/css",
3 "version": "24.1.0",
4 "description": "A CSS from JS tool.",
5 "homepage": "https://github.com/erickmerchant/css#readme",
6 "bugs": {
7 "url": "https://github.com/erickmerchant/css/issues"
8 },
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/erickmerchant/css.git"
12 },
13 "license": "ISC",
14 "author": "Erick Merchant <erickmerchant@gmail.com>",
15 "type": "module",
16 "main": "index.js",
17 "bin": {
18 "css": "./cli.js"
19 },
20 "scripts": {
21 "lint": "eslint . --ignore-path .gitignore",
22 "test": "npm run lint"
23 },
24 "dependencies": {
25 "arg": "^4.1.3",
26 "chokidar": "^3.4.3",
27 "css-selector-tokenizer": "^0.7.3",
28 "csso": "^4.1.0",
29 "kleur": "^4.1.3",
30 "postcss": "^8.1.4",
31 "sqlite3": "^5.0.0"
32 },
33 "devDependencies": {
34 "@erickmerchant/eslint-config": "^1.1.2",
35 "@erickmerchant/prettier-config": "^1.2.0",
36 "babel-eslint": "^10.1.0",
37 "eslint": "^7.12.1",
38 "eslint-plugin-prettier": "^3.1.4",
39 "prettier": "^2.1.2"
40 },
41 "engines": {
42 "node": ">=14.3"
43 },
44 "eslintConfig": {
45 "extends": "@erickmerchant/eslint-config",
46 "rules": {
47 "no-await-in-loop": "off",
48 "require-atomic-updates": "off"
49 }
50 },
51 "prettier": "@erickmerchant/prettier-config"
52}