-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "saga-lite",
"version": "0.1.4",
"description": "A simple event bus inspired by redux-saga. Framework agnostic.",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "rm -rf ./dist/ && tsc",
"test": "./node_modules/mocha/bin/mocha --watch-extensions ts,tsx --watch --recursive --require ts-node/register \"test/**/*.test.ts\"",
"test:watch": "./node_modules/mocha/bin/mocha --watch-extensions ts,tsx --watch --recursive --require ts-node/register \"test/**/*.spec.ts\"",
"test:watchSingle": "./node_modules/mocha/bin/mocha --watch-extensions ts,tsx --watch --require ts-node/register"
},
"repository": {
"type": "git",
"url": "https://github.com/InterAl/saga-lite"
},
"keywords": [
"saga",
"event bus",
"mobx",
"redux",
"redux-saga"
],
"author": "InterAl",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/sinon": "^2.3.3",
"chai": "^4.1.0",
"mocha": "^3.4.2",
"sinon": "^2.4.1",
"ts-node": "^3.3.0",
"wait-for-cond": "^1.5.1"
}
}