You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
67 lines
1.9 KiB
{ |
|
"name": "nth-check", |
|
"version": "2.0.1", |
|
"description": "Parses and compiles CSS nth-checks to highly optimized functions.", |
|
"author": "Felix Boehm <me@feedic.com>", |
|
"license": "BSD-2-Clause", |
|
"sideEffects": false, |
|
"funding": { |
|
"url": "https://github.com/fb55/nth-check?sponsor=1" |
|
}, |
|
"directories": { |
|
"lib": "lib/" |
|
}, |
|
"main": "lib/index.js", |
|
"types": "lib/index.d.ts", |
|
"files": [ |
|
"lib/**/*" |
|
], |
|
"scripts": { |
|
"test": "npm run test:jest && npm run lint", |
|
"test:jest": "jest", |
|
"lint": "npm run lint:es && npm run lint:prettier", |
|
"lint:es": "eslint .", |
|
"lint:prettier": "npm run prettier -- --check", |
|
"format": "npm run format:es && npm run format:prettier", |
|
"format:es": "npm run lint:es -- --fix", |
|
"format:prettier": "npm run prettier -- --write", |
|
"prettier": "prettier '**/*.{ts,md,json,yml}'", |
|
"build": "tsc", |
|
"prepare": "npm run build" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "https://github.com/fb55/nth-check" |
|
}, |
|
"keywords": [ |
|
"nth-child", |
|
"nth", |
|
"css" |
|
], |
|
"bugs": { |
|
"url": "https://github.com/fb55/nth-check/issues" |
|
}, |
|
"homepage": "https://github.com/fb55/nth-check", |
|
"dependencies": { |
|
"boolbase": "^1.0.0" |
|
}, |
|
"devDependencies": { |
|
"@types/jest": "^27.0.1", |
|
"@types/node": "^16.9.1", |
|
"@typescript-eslint/eslint-plugin": "^4.31.1", |
|
"@typescript-eslint/parser": "^4.31.1", |
|
"eslint": "^7.32.0", |
|
"eslint-config-prettier": "^8.3.0", |
|
"jest": "^27.2.0", |
|
"prettier": "^2.4.1", |
|
"ts-jest": "^27.0.5", |
|
"typescript": "^4.4.3" |
|
}, |
|
"jest": { |
|
"preset": "ts-jest", |
|
"testEnvironment": "node" |
|
}, |
|
"prettier": { |
|
"tabWidth": 4 |
|
} |
|
}
|
|
|