-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 KB
/
package.json
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
{
"name": "pubsub-distinct",
"version": "0.2.0",
"description": "PubSub service based on rx-pubsub with an additional publishDistinct() method",
"main": "dist/pubsub-distinct.min.js",
"types": "index.d.ts",
"scripts": {
"start": "webpack --config webpack.config.js && webpack-dev-server",
"build:webpack": "webpack --config webpack.prod.config.js && webpack --config webpack.config.js",
"build": "npm run clean && npm run build:webpack",
"clean": "rimraf build",
"test": "karma start"
},
"author": {
"name": "t0w5a",
"email": "t0w5a@tomsa.md",
"url": "https://github.com/t0w5a"
},
"repository": "t0w5a/pubsub-distinct",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/t0w5a/pubsub-distinct/blob/master/LICENSE"
}
],
"keywords": [
"rx-pubsub",
"rx-pub-sub",
"rx-pub/sub",
"subscribe",
"publish",
"publish/subscribe",
"pubsub",
"pub/sub",
"rx",
"rxpubsub",
"eventemitter",
"distinct",
"unique",
"duplicate"
],
"dependencies": {
"rx-pubsub": "^0.2.1",
"rxjs": "^5.3.1"
},
"devDependencies": {
"@types/jasmine": "^2.5.38",
"@types/node": "^6.0.52",
"@types/uuid": "^2.0.29",
"compression-webpack-plugin": "^0.4.0",
"istanbul-instrumenter-loader": "^1.1.0",
"jasmine-ajax": "^3.3.1",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"karma-typescript": "^2.1.3",
"karma-webpack": "^1.8.0",
"object-hash": "^1.1.8",
"tracekit": "^0.4.4",
"ts-loader": "^1.2.2",
"typescript": "^2.0.10",
"uuid": "^3.0.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
}
}