forked from avkonst/hookstate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.55 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 3.55 KB
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
{
"name": "@hookstate/core",
"version": "3.0.8",
"description": "The flexible, fast and extendable state management for React that is based on hooks and state usage tracking.",
"license": "MIT",
"author": {
"name": "Andrey Konstantinov"
},
"repository": {
"url": "https://github.com/avkonst/hookstate"
},
"bugs": {
"url": "https://github.com/avkonst/hookstate/issues"
},
"homepage": "https://github.com/avkonst/hookstate",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"build:watch": "yarn run start",
"lint": "tslint --project .",
"clean": "rimraf dist",
"clean-deps": "rimraf node_modules",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom --watch",
"check-updates": "ncu",
"apply-updates": "ncu -u",
"build:docs": "typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs --tsconfig ./tsconfig.typedoc.json --exclude \"dist/**.js\" --gitRevision master --includeDeclarations --excludeExternals --excludeNotExported --categorizeByGroup false --readme none --hideGenerator --mode file --out dist/docs && concat-md --decrease-title-levels --dir-name-as-title dist/docs > dist/typedoc.md && rimraf dist/docs && replace '></a>' '/>' dist/typedoc.md && replace 'Ƭ [*][*]([A-Za-z0-9]+)[*][*]: [*](.*)[*]' 'Ƭ **$1**: *`$2`*' dist/typedoc.md && replace 'Ƭ [*][*]State[*][*]: [*](.*)[*]' 'Ƭ **State**: *[StateMixin](#interfacesstatemixinmd) & `S extends object` ? `{ readonly [K in keyof Required<S>]: State<S[K]> }` : [StateMethods](#interfacesstatemethodsmd)*' dist/typedoc.md && replace '[(]statemethods.md#\\[self\\][)]' '(#self)' dist/typedoc.md && replace '[(]statemixin.md#\\[self\\][)]' '(#self-1)' dist/typedoc.md && replace '[(]statemixindestroy.md#\\[self\\][)]' '(#self-2)' dist/typedoc.md && replace '# @hookstate/core' '' dist/typedoc.md && replace '<a name=\"readmemd\"/>' '\n---\nid: typedoc-hookstate-core\ntitle: API @hookstate/core\n---' dist/typedoc.md && replace '\n\n(---)' '$1' dist/typedoc.md && mv dist/typedoc.md docs/index/docs/typedoc-hookstate-core.md",
"prepare": "yarn build"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8.6 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/runtime": "7.9.6",
"@rollup/plugin-babel": "5.0.2",
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-node-resolve": "8.0.0",
"@rollup/plugin-url": "5.0.0",
"@testing-library/react": "10.0.4",
"@testing-library/react-hooks": "3.2.1",
"@types/jest": "25.2.3",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"concat-md": "0.3.5",
"cross-env": "7.0.2",
"npm-check-updates": "6.0.1",
"react": "16.9.0",
"react-dom": "16.13.1",
"react-scripts": "3.4.1",
"react-test-renderer": "16.13.1",
"replace": "1.2.0",
"rimraf": "3.0.2",
"rollup": "2.10.5",
"rollup-plugin-peer-deps-external": "2.2.2",
"rollup-plugin-typescript2": "0.26.0",
"ts-jest": "26.0.0",
"tslint": "6.1.2",
"tslint-react": "5.0.0",
"typedoc": "0.17.7",
"typedoc-plugin-markdown": "2.2.17",
"typescript": "3.9.3"
},
"files": [
"dist"
]
}