-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 877 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
{
"name": "redux-dry-ts-actions",
"version": "1.3.0",
"description": "Micro library to create actions for redux with automatically inferred TypeScript types",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laszlopandy/redux-dry-ts-actions.git"
},
"keywords": [
"redux",
"fsa",
"types",
"dry",
"action-types"
],
"author": "Laszlo Pandy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/laszlopandy/redux-dry-ts-actions/issues"
},
"homepage": "https://github.com/laszlopandy/redux-dry-ts-actions#readme",
"devDependencies": {
"typescript": "3.4.5"
}
}