-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "mobx-observable-history",
"version": "2.0.3",
"description": "History.js wrapper with observable location and reactive URLSearchParams",
"repository": "https://github.com/ixrock/mobx-observable-history",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsc",
"test": "jest",
"test-watch": "jest --watch",
"pack": "npm pack"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"keywords": [
"mobx",
"observable",
"history",
"location",
"search-params",
"url-search-params",
"url-search-params-extended"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"lib/*.*(js|d.ts)",
"index.d.ts"
],
"dependencies": {
"@types/history": "^4.7.8",
"history": "^4.10.1",
"mobx": "^6.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"author": "ixrock",
"license": "MIT"
}