typestyle-extensions
Version:
A useful collection of typestyle extensions and helper functions to make working with TypeStyle even more pleasant
59 lines (58 loc) • 1.71 kB
JSON
{
"name": "typestyle-extensions",
"version": "1.3.1",
"description": "A useful collection of typestyle extensions and helper functions to make working with TypeStyle even more pleasant",
"main": "dist/src/index.js",
"module": "dist/esm/src/index.js",
"js:next": "dist/esm/src/index.js",
"types": "dist/src/index.d.ts",
"typings": "dist/src/index.d.ts",
"scripts": {
"build:plain": "tsc",
"build:esm": "tsc --outDir ./dist/esm --target es6",
"build": "run-s clean:dist build:plain build:esm clean:regulartest clean:esmtest",
"clean:dist": "rimraf ./dist",
"clean:regulartest": "rimraf ./dist/test",
"clean:esmtest": "rimraf ./dist/esm/test",
"clean:tests": "rimraf ./dist/test",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benduran/typestyle-extensions.git"
},
"keywords": [
"TypeStyle",
"CSS",
"CSS-in-JS",
"utilities"
],
"author": "Benjamin Duran <stratodyne@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benduran/typestyle-extensions/issues"
},
"homepage": "https://github.com/benduran/typestyle-extensions#readme",
"devDependencies": {
"@types/css": "0.0.31",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.8",
"css": "^2.2.4",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.1",
"typestyle": "^2.0.2"
},
"peerDependencies": {
"typestyle": "^2.0.2"
},
"dependencies": {
"uuid-random": "^1.0.9"
}
}