-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "typed-rx-emitter",
"version": "1.1.5",
"description": "Typesafe Rx-based emitter",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "shx rm -f index.d.ts test.d.ts && npm run lint && tsc -d",
"lint": "tslint -p tsconfig.json ./*.ts",
"watch": "tsc -w",
"prepublishOnly": "npm test",
"tdd": "tsc -w & ava -w test.js",
"test": "npm run build && ava -v test.js && flow check && npm run test:minify",
"test:minify": "webpack --config ./test-minify/webpack.config.js -p && cat ./test-minify/bundle.js | gzip | wc -c"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bcherny/typed-rx-emitter.git"
},
"keywords": [
"react",
"reactive",
"event",
"message",
"redux",
"flux",
"cqrs",
"rx",
"rxjs",
"did",
"should",
"collection",
"model",
"better"
],
"author": "Boris Cherny <[email protected]> (http://performancejs.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcherny/typed-rx-emitter/issues"
},
"homepage": "https://github.com/bcherny/typed-rx-emitter#readme",
"devDependencies": {
"ava": "^0.25.0",
"awesome-typescript-loader": "^5.2.0",
"flow-bin": "^0.78.0",
"rxjs": "^6.2.2",
"shx": "^0.3.2",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"dependencies": {},
"peerDependencies": {
"rxjs": ">=5.0.0"
}
}