-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
94 lines (94 loc) · 2.17 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-utils",
"version": "6.1.0",
"description": "Utility functions and common patterns for MobX",
"main": "mobx-utils.umd.js",
"module": "mobx-utils.module.js",
"jsnext:main": "mobx-utils.module.js",
"react-native": "mobx-utils.module.js",
"typings": "lib/mobx-utils.d.ts",
"sideEffects": false,
"scripts": {
"prettier": "prettier --write \"**/*.js\" \"**/*.jsx\" \"**/*.tsx\" \"**/*.ts\"",
"build": "tsc -p src && rollup -c",
"watch": "jest --watch",
"test": "jest",
"prepublishOnly": "npm run build && npm run build-docs",
"coverage": "jest --coverage",
"build-docs": "npm run build && documentation readme lib/mobx-utils.js --section API"
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-utils.git"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx-utils/issues"
},
"files": [
"lib/",
"mobx-utils.umd.js",
"mobx-utils.module.js"
],
"devDependencies": {
"@types/jest": "^25.2.3",
"coveralls": "^3.1.0",
"documentation": "^13.0.0",
"faucet": "*",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.6",
"lodash.clonedeep": "*",
"lodash.clonedeepwith": "*",
"lodash.intersection": "*",
"mobx": "^6.0.0",
"prettier": "^2.0.5",
"rollup": "^2.10.8",
"rxjs": "^6.6.3",
"shelljs": "^0.8.4",
"ts-jest": "^26.0.0",
"typescript": "^4.0.3"
},
"dependencies": {},
"peerDependencies": {
"mobx": "^6.0.0"
},
"keywords": [
"mobx",
"mobx-utils",
"promise",
"reactive",
"frp",
"functional-reactive-programming",
"state management"
],
"jest": {
"preset": "ts-jest",
"testRegex": "test/.*\\.(t|j)sx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/coverage/",
"/\\./"
],
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}