-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "@ataschz/redux-ducks-ts",
"version": "1.0.13",
"description": "Small set of helper functions to create Redux modules using ducks-modular-redux proposal write in TypeScript",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"build-2": "tsc",
"test": "jest",
"verify": "npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ataschz/redux-ducks-ts.git"
},
"homepage": "https://github.com/ataschz/redux-ducks-ts/",
"bugs": {
"url": "https://github.com/ataschz/redux-ducks-ts/issues"
},
"keywords": [
"redux",
"duck",
"module",
"helper",
"small"
],
"author": "Ata Sanchez <gahs94@gmail.com> (http://x.com/ataschz)",
"license": "MIT",
"private": false,
"devDependencies": {
"rollup": "^1.26.3",
"rollup-plugin-typescript2": "^0.25.2",
"typescript": "^3.7.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}