-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "redux-cirquit",
"version": "2.0.1",
"description": "short-circuiting action -> reducer handling in redux.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "dist"
},
"scripts": {
"fmt": "prettier --parser typescript '{,!(node_modules|dist)/**/}*.ts{,x}' --write",
"clean": "rimraf dist",
"build": "npm-run-all --serial clean build:ts build:flow",
"build:ts": "tsc",
"build:flow": "flowgen --output-file dist/index.js.flow dist/index.d.ts",
"test": "npm-run-all --parallel test:*",
"test:unit": "jest --config jest.config.json",
"test:fmt": "prettier --list-different --parser typescript '{,!(node_modules|dist)/**/}*.ts{,x}'",
"test:compile": "tsc --noEmit",
"prepublish": "npm-run-all --serial test build"
},
"repository": {
"type": "git",
"url": "https://github.com/airtoxin/redux-cirquit"
},
"keywords": [
"redux",
"flux",
"react",
"state"
],
"author": "airtoxin",
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.2.3",
"flowgen": "^1.2.2",
"jest": "^22.4.4",
"npm-run-all": "^4.1.3",
"prettier": "^1.12.1",
"redux": "^4.0.0",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"tslib": "^1.9.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^7.0.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.8.3"
}
}