UNPKG

2.08 kBJSONView Raw
1{
2 "name": "@reallyland/polling-observer",
3 "version": "0.4.3",
4 "description": "A new way of running polling function with observer pattern",
5 "keywords": [
6 "node",
7 "polling",
8 "polling-observer",
9 "pollingobserver",
10 "really",
11 "reallyland",
12 "typescript"
13 ],
14 "homepage": "https://github.com/reallyland/polling-observer",
15 "repository": {
16 "type": "git",
17 "url": "git@github.com:reallyland/polling-observer.git"
18 },
19 "license": "MIT",
20 "author": {
21 "name": "Rong Sen Ng (motss)",
22 "email": "wes.ngrongsen@gmail.com",
23 "url": "https://github.com/motss"
24 },
25 "files": [
26 "dist/*.*js.map",
27 "dist/*.*js",
28 "dist/*.d.ts.map",
29 "dist/*.d.ts"
30 ],
31 "main": "dist/index",
32 "module": "dist/index.mjs",
33 "typings": "dist/index.d.ts",
34 "scripts": {
35 "build": "npm run clean && npm run rollup",
36 "build:test": "npm run clean && tsc -p ./tsconfig.test.json",
37 "clean": "shx rm -rf dist/",
38 "demo": "node -r esm ./dist/demo/index.js",
39 "jest": "jest --config ./.jestrc.json",
40 "lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish",
41 "lint:debug": "tslint --project tsconfig.json --config tslint.json --format stylish",
42 "prepublishOnly": "npm run lint && npm run build",
43 "rollup": "rollup -c ./rollup.config.js",
44 "test": "npm run lint && npm run build:test && npm run jest",
45 "ts": "npm run clean && tsc",
46 "watch": "npm run ts -- --watch"
47 },
48 "dependencies": {},
49 "devDependencies": {
50 "@reallyland/tsconfig": "^1.0.0",
51 "@reallyland/tslint-config": "^1.0.0",
52 "@types/jest": "^24.0.13",
53 "@types/node": "^12.0.2",
54 "esm": "^3.2.25",
55 "jest": "^24.8.0",
56 "rollup": "^1.12.3",
57 "rollup-plugin-filesize": "^6.1.0",
58 "rollup-plugin-terser": "^5.0.0",
59 "rollup-plugin-tslint": "^0.2.2",
60 "rollup-plugin-typescript2": "^0.21.1",
61 "shx": "^0.3.2",
62 "tslint": "^5.16.0",
63 "typescript": "^3.4.5"
64 },
65 "engines": {
66 "node": ">= 8.16.0",
67 "npm": ">= 6.4.1"
68 },
69 "publishConfig": {
70 "access": "public"
71 }
72}