-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.73 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
89
90
{
"name": "solox",
"version": "1.0.0",
"description": "MobX without the mob. A state management library for React.",
"sideEffects": false,
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run build && npm run lint && npm run test:unittest",
"build": "tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh",
"clean": "rm -rf dist types coverage",
"test:unittest": "tsc -p test && jest",
"test:coverage": "tsc -p test && jest --coverage",
"lint": "npm run lint:source && npm run lint:tests",
"lint:source": "eslint --ext .ts --ext .tsx src",
"lint:tests": "eslint --ext .ts --ext .tsx test",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"lint-staged": {
"**/*.ts": [
"eslint --ext ts --ext tsx"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwalton/solox.git"
},
"keywords": [
"react",
"state",
"MobX",
"immer"
],
"author": {
"name": "Jason Walton",
"email": "[email protected]",
"url": "https://www.thedreaming.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/exegesis-js/jwalton/solox/issues"
},
"homepage": "https://github.com/jwalton/solox#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/jest": "^29.1.2",
"@types/node": "^18.7.1",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-jest": "^1.0.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"husky": "^8.0.1",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"semantic-release": "^19.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"dependencies": {
"immer": "^9.0.5"
},
"peerDependencies": {
"react": ">= 16.8.0 < 19"
}
}