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