UNPKG

foibles

Version:

Composition and mixins and TypeScript classes

37 lines (36 loc) 1.03 kB
{ "name": "foibles", "version": "0.3.0", "description": "Composition and mixins and TypeScript classes", "license": "MIT", "repository": "aholstenson/foibles", "keywords": [ "mixins", "mixin", "composition" ], "scripts": { "test": "jest", "ci": "npm run coverage && npm run lint", "coverage": "jest --coverage", "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'", "build": "tsc --module commonjs --target es5 --outDir dist/cjs && tsc --module es6 --target es6 --outDir dist/esm", "prebuild": "rimraf dist", "prepublishOnly": "npm run build" }, "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "devDependencies": { "@types/jest": "^24.0.15", "@types/node": "^8.0.0", "coveralls": "^3.0.5", "jest": "^24.8.0", "jest-config": "^24.8.0", "rimraf": "^2.6.3", "ts-jest": "^24.0.2", "tslint": "^5.18.0", "typescript": "^3.5.3" }, "dependencies": {} }