12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "name": "ccount",
- "version": "1.1.0",
- "description": "Count characters",
- "license": "MIT",
- "keywords": [
- "character",
- "count",
- "char"
- ],
- "repository": "wooorm/ccount",
- "bugs": "https://github.com/wooorm/ccount/issues",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- },
- "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
- "contributors": [
- "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
- ],
- "files": [
- "index.js"
- ],
- "dependencies": {},
- "devDependencies": {
- "browserify": "^17.0.0",
- "nyc": "^15.0.0",
- "prettier": "^2.0.0",
- "remark-cli": "^9.0.0",
- "remark-preset-wooorm": "^8.0.0",
- "tape": "^5.0.0",
- "tinyify": "^3.0.0",
- "xo": "^0.34.0"
- },
- "scripts": {
- "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
- "build-bundle": "browserify . -s ccount -o ccount.js",
- "build-mangle": "browserify . -s ccount -p tinyify -o ccount.min.js",
- "build": "npm run build-bundle && npm run build-mangle",
- "test-api": "node test",
- "test-coverage": "nyc --reporter lcov tape test.js",
- "test": "npm run format && npm run build && npm run test-coverage"
- },
- "remarkConfig": {
- "plugins": [
- "preset-wooorm"
- ]
- },
- "prettier": {
- "tabWidth": 2,
- "useTabs": false,
- "singleQuote": true,
- "bracketSpacing": false,
- "semi": false,
- "trailingComma": "none"
- },
- "xo": {
- "prettier": true,
- "esnext": false,
- "ignores": [
- "ccount.js"
- ],
- "rules": {
- "unicorn/prefer-type-error": "off"
- }
- },
- "nyc": {
- "check-coverage": true,
- "lines": 100,
- "functions": 100,
- "branches": 100
- }
- }
|