UNPKG

squee

Version:
62 lines (61 loc) 1.98 kB
{ "name": "squee", "version": "1.1.0", "description": "Super quick event emitter!", "main": "lib/index.js", "typings": "lib/index.d.ts", "scripts": { "clean": "del-cli dist/* lib/*", "compile": "tsc --project tsconfig.json", "dist": "run-p dist:amd-es3 dist:amd-es2015 dist:system-es3 dist:system-es2015", "dist:amd-es3": "tsc --module amd --outFile dist/squee-amd-es3.js --project tsconfig.json --target es3", "dist:amd-es2015": "tsc --module amd --outFile dist/squee-amd-es2015.js --project tsconfig.json --target es2015", "dist:system-es3": "tsc --module system --outFile dist/squee-system-es3.js --project tsconfig.json --target es3", "dist:system-es2015": "tsc --module system --outFile dist/squee-system-es2015.js --project tsconfig.json --target es2015", "lint": "tslint --config tslint.json --format stylish --project tsconfig.json", "test": "jest", "verify": "npm run clean && npm run compile && npm run lint && npm run test && npm run dist" }, "repository": { "type": "git", "url": "git+https://github.com/joshuakgoldberg/squee.git" }, "keywords": [ "event", "emitter", "super", "quick", "squee", "yippee", "hooray" ], "author": "Josh Goldberg <joshuakgoldberg@outlook.com>", "license": "MIT", "bugs": { "url": "https://github.com/joshuakgoldberg/squee/issues" }, "homepage": "https://github.com/joshuakgoldberg/squee#readme", "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json" ] }, "devDependencies": { "@types/jest": "^22.1.1", "del-cli": "^1.1.0", "jest": "^22.1.4", "npm-run-all": "^4.1.2", "ts-jest": "^22.0.3", "tslint": "5.9.1", "tsutils": "^2.21.0", "typescript": "^2.7.1" } }