-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"author": "Mat.",
"bugs": {
"url": "https://github.com/drmats/red-g/issues"
},
"contributors": [
{
"name": "drmats",
"email": "xcmats@protonmail.com",
"url": "https://twitter.com/xcmats/"
}
],
"dependencies": {
"@xcmats/js-toolbox": ">=0.16.1 <0.20.0"
},
"description": "Statically typed actions and reducers for redux.",
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/eslint-parser": "7.23.10",
"@babel/plugin-transform-export-namespace-from": "7.23.4",
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"cross-env": "7.0.3",
"eslint-plugin-import": "2.29.1",
"eslint": "8.57.0",
"gh-pages": "6.1.1",
"jsdoc-babel": "0.5.0",
"jsdoc": "4.0.2",
"minami": "1.2.3",
"rimraf": "5.0.5",
"typescript": "5.3.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist"
],
"homepage": "https://drmats.github.io/red-g/",
"keywords": [
"actions",
"reducers",
"redux",
"javascript",
"typescript"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/es/index.js",
"name": "red-g",
"private": true,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drmats/red-g.git"
},
"scripts": {
"build": "npm run clean:build && npm run build:prepare && npm run build:types && npm run build:commonjs && npm run build:es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel --extensions \".js,.ts\" --ignore \"./src/**/*.d.ts\" ./src/ -d ./dist/",
"build:es": "cross-env BABEL_ENV=es babel --extensions \".js,.ts\" --ignore \"./src/**/*.d.ts\" ./src/ -d ./dist/es/",
"build:prepare": "node ./scripts/prepare.js",
"build:types": "echo \"Generating type declarations from .ts files.\" && tsc --emitDeclarationOnly",
"clean:build": "rimraf ./dist",
"clean:doc": "rimraf ./dist/doc",
"clean:modules": "rimraf package-lock.json && rimraf node_modules",
"clean": "npm run clean:build && npm run clean:doc",
"clean:all": "npm run clean && npm run clean:modules",
"deploy": "gh-pages -d ./dist/doc --message 'gh-pages update'",
"doc": "npm run clean:doc && npm run jsdoc",
"jsdoc": "npm run jsdoc:bright && node ./scripts/darken.js",
"jsdoc:bright": "echo \"Generating jsdoc ...\" && jsdoc -c ./jsdoc.json -R ./README.md ./src/**/* -d ./dist/doc/",
"lint": "echo \"Linting and typechecking...\" && eslint ./src/ --ext .js,.ts && npm run type-check",
"prepublishOnly": "npm run test && npm run build && npm run doc",
"prestart": "npm run build:prepare && npm run build:types && npm run build:commonjs",
"publishAll": "npm run prepublishOnly && echo \"Publishing ...\" && cd ./dist/ && npm publish && cd .. && npm run deploy && echo \"Done.\"",
"start": "node ./scripts/start.js",
"test": "npm run lint && echo \"Warning: no tests specified (yet)\"",
"type-check": "tsc --noEmit"
},
"typings": "dist/index.d.ts",
"version": "2.0.3"
}