UNPKG

style-helper

Version:

Small helpers for working with CSS-in-JS

59 lines (58 loc) 1.37 kB
{ "name": "style-helper", "version": "4.0.0", "description": "Small helpers for working with CSS-in-JS", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist/", "LICENSE" ], "scripts": { "lint": "tslint \"src/**/*.ts\" --project tsconfig.json", "build": "rimraf dist/ && tsc", "test:cov": "jest --coverage", "test": "npm run build && npm run lint && npm run test:cov", "prepublish": "npm run build" }, "repository": { "type": "git", "url": "git://github.com/blakeembrey/style-helper.git" }, "keywords": [ "style", "helper", "url", "escape", "free-style" ], "author": "Blake Embrey <hello@blakeembrey.com>", "license": "MIT", "bugs": { "url": "https://github.com/blakeembrey/style-helper/issues" }, "homepage": "https://github.com/blakeembrey/style-helper", "jest": { "transform": { "\\.tsx?$": "ts-jest" }, "rootDir": "src/", "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "tsx", "js", "json" ] }, "devDependencies": { "@types/jest": "^24.0.11", "@types/node": "^11.13.0", "jest": "^24.7.1", "rimraf": "^2.6.1", "ts-jest": "^24.0.1", "tslint": "^5.11.0", "tslint-config-standard": "^8.0.1", "typescript": "^3.1.6" } }