-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "stated-bean",
"version": "0.9.2",
"description": "A light but scalable state management library with react hooks",
"repository": "[email protected]:mjolnirjs/stated-bean.git",
"license": "MIT",
"main": "lib/cjs.js",
"module": "lib/es",
"es2015": "lib/es2015.js",
"fesm5": "lib/esm.js",
"unpkg": "lib/umd.min.js",
"types": "lib/types/index.d.ts",
"files": [
"lib",
"!*.tsbuildinfo"
],
"scripts": {
"build": "rimraf dist lib && run-p build:**",
"build:example": "parcel build ./example/index.html",
"build:r": "r -p",
"build:ts": "tsc -p src",
"dev": "parcel ./example/dev.html --https",
"lint": "run-p lint:*",
"lint:es": "cross-env EFF_NO_LINK_RULES=true eslint . --cache --ext js,md,mdx,ts,tsx -f friendly --fix",
"lint:tsc": "tsc --noEmit",
"postinstall": "yarn-deduplicate || exit 0",
"serve": "serve dist",
"start": "yarn dev",
"test": "jest",
"type-coverage": "type-coverage --detail --ignore-catch --ignore-files 'lib/**/*' --strict"
},
"peerDependencies": {
"react": ">=16.8.0",
"rxjs": ">=6.0.0",
"tslib": ">=1.0.0"
},
"devDependencies": {
"@1stg/lib-config": "^0.3.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.1",
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-test-renderer": "^16.9.2",
"injection-js": "^2.3.0",
"less": "^3.10.3",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.1",
"rxjs": "^6.5.4",
"serve": "^11.3.0",
"ts-jest": "^25.1.0",
"type-coverage": "^2.4.0",
"typescript": "^3.7.5",
"yarn-deduplicate": "^1.1.1"
},
"sideEffects": false,
"alias": {
"stated-bean": "./src"
},
"typeCoverage": {
"atLeast": 98
}
}