-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
94 lines (94 loc) · 2.77 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
91
92
93
94
{
"name": "mobx-persist-store",
"version": "1.1.5",
"description": "Mobx Persist Store",
"author": "quarrant",
"license": "MIT",
"main": "lib/esm2017/index.js",
"module": "lib/esm5/index.js",
"es2015": "lib/esm2015/index.js",
"files": [
"lib/"
],
"keywords": [
"mobx",
"persist",
"mobx-persist",
"react-native",
"react"
],
"homepage": "https://github.com/quarrant/mobx-persist-store#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/quarrant/mobx-persist-store.git"
},
"bugs": {
"url": "https://github.com/quarrant/mobx-persist-store/issues"
},
"scripts": {
"---------- Building ----------------------------------------------------": "",
"build": "rm -rf lib && npm run build:esm5 && npm run build:esm2015 && npm run build:esm2017",
"build:esm5": "tsc --project tsconfig.esm5.json",
"build:esm2015": "tsc --project tsconfig.esm2015.json",
"build:esm2017": "tsc --project tsconfig.json",
"prepublishOnly": "npm run build",
"npm:release": "bash scripts/make-release-branch.sh",
"---------- Testing ----------------------------------------------------": "",
"test": "jest",
"---------- Linting ----------------------------------------------------": "",
"ts": "tsc --noEmit",
"---------- helper commands --------------------------------------------": "",
"prettier": "npx prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
"-----------------------------------------------------------------------": ""
},
"peerDependencies": {
"mobx": "*"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@babel/types": "^7.18.4",
"@types/jest": "^28.1.1",
"@types/milliseconds": "^0.0.30",
"@types/node": "^17.0.40",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-localstorage-mock": "^2.4.21",
"jest-mock-console": "^2.0.0",
"milliseconds": "^1.0.3",
"mobx": "^6.3.0",
"ts-jest": "^28.0.4",
"typescript": "^4.2.4"
},
"jest": {
"modulePaths": [
"<rootDir>/src/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/examples/"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native)/"
],
"resetMocks": false,
"setupFiles": [
"jest-localstorage-mock"
]
}
}