-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 933 Bytes
/
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
{
"name": "pilota",
"version": "7.2.0",
"description": "Command bus for RxJS",
"type": "module",
"module": "./src/pilota.js",
"scripts": {
"test": "mocha --colors 'test/**/*spec.js'",
"test:watch": "mocha --require babel-core/register --colors -w 'test/**/*spec.js'"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ndp-software/pilota.git"
},
"keywords": [
"rxjs",
"event bus",
"reducer",
"factory"
],
"author": "Andrew J. Peterson",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ndp-software/pilota/issues"
},
"homepage": "https://github.com/ndp-software/pilota#readme",
"dependencies": {
"rxjs": "^7"
},
"devDependencies": {
"chai": "*",
"mocha": "*",
"simple-mock": "*"
}
}