-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "redux-transactional",
"version": "0.1.0",
"description": "Provides sequential, nested transactions on top of redux store",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.ts",
"files": ["lib/**/*"],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "microbundle watch",
"build": "microbundle",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fram-x/redux-transactional.git"
},
"keywords": [
"redux",
"store",
"reducer",
"transaction",
"commit",
"abort",
"nested",
"undo"
],
"author": "Bjørn Egil Hansen",
"license": "MIT",
"bugs": {
"url": "https://github.com/fram-x/redux-transactional/issues"
},
"homepage": "https://github.com/fram-x/redux-transactional#readme",
"devDependencies": {
"microbundle": "^0.10.1",
"prettier": "^1.16.4",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333"
}
}