-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "rxmq",
"version": "2.0.1",
"description": "JavaScript pub/sub library based on RxJS",
"main": "es5/component.js",
"es6": "index.js",
"scripts": {
"cover": "babel-node ./node_modules/istanbul/lib/cli cover ./node_modules/tape/bin/tape ./test",
"build": "NODE_ENV=production rollup -c",
"test": "babel-node ./node_modules/tape/bin/tape ./test | tap-dot && npm run test-typings",
"test-typings": "./node_modules/.bin/tsc --noImplicitAny --lib es6,dom --noEmit ts/rxmq-test.ts",
"lint": "eslint src/ test/ index.js",
"docs": "esdoc -c esdoc.json",
"prepublish": "npm run build"
},
"contributors": [
"Tim Ermilov <yamalight@gmail.com> (http://codezen.net)",
"Denis Kuchelev (https://github.com/kuchelev)",
"Niels Grewe (https://github.com/ngrewe)",
"ILYA (https://github.com/ilkray)"
],
"repository": {
"type": "git",
"url": "https://github.com/rxmqjs/rxmq.js"
},
"babel": {
"env": {
"production": {
"presets": [
"@babel/preset-env"
]
},
"development": {
"presets": [
"@babel/preset-env"
]
}
}
},
"license": "MIT",
"dependencies": {
"rxjs": "^6.5.5"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"istanbul": "^1.1.0-alpha.1",
"prettier": "^2.0.5",
"rollup": "^2.12.0",
"rollup-plugin-babel": "^4.4.0",
"tap-dot": "^2.0.0",
"tape": "^5.0.1",
"typescript": "^3.9.3"
},
"types": "./ts/rxmq.d.ts"
}