12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "zen-observable-ts",
- "version": "0.8.21",
- "description": "An Implementation of ES Observables in Typescript",
- "author": "Evans Hauser <evanshauser@gmail.com>",
- "contributors": [],
- "license": "MIT",
- "main": "./lib/index.js",
- "module": "./lib/bundle.esm.js",
- "typings": "./lib/index.d.ts",
- "sideEffects": false,
- "repository": {
- "type": "git",
- "url": "git+https://github.com/apollographql/apollo-link.git"
- },
- "bugs": {
- "url": "https://github.com/apollographql/apollo-link/issues"
- },
- "homepage": "https://github.com/zenparsing/zen-observable",
- "scripts": {
- "build": "tsc && rollup -c",
- "clean": "rimraf lib/* && rimraf coverage/*",
- "coverage": "jest --coverage",
- "filesize": "../../scripts/minify",
- "lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts",
- "prebuild": "npm run clean",
- "prepare": "npm run build",
- "test": "npm run lint && jest",
- "watch": "tsc -w -p ."
- },
- "devDependencies": {
- "@types/jest": "24.9.0",
- "jest": "24.9.0",
- "rimraf": "2.7.1",
- "rollup": "1.29.1",
- "ts-jest": "22.4.6",
- "tslint": "5.20.1",
- "typescript": "3.0.3"
- },
- "jest": {
- "transform": {
- ".(ts|tsx)": "ts-jest"
- },
- "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
- "moduleFileExtensions": [
- "ts",
- "tsx",
- "js",
- "json"
- ],
- "testURL": "http://localhost"
- },
- "dependencies": {
- "tslib": "^1.9.3",
- "zen-observable": "^0.8.0"
- },
- "gitHead": "1012934b4fd9ab436c4fdcd5e9b1bb1e4c1b0d98"
- }
|