-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.34 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
95
96
97
98
99
{
"name": "@mighty-justice/utils",
"version": "1.5.1",
"description": "Standardization of small utilities across Mighty",
"main": "dist/index.js",
"module": "dist/tester.esm.js",
"typings": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"analyze": "source-map-explorer 'dist/*.js'",
"build": "tsdx build",
"deploy": "np",
"format": "tsdx lint --fix src test",
"lint": "tsdx lint src test",
"prepublishOnly": "tsdx build",
"preversion": "npm run lint",
"start": "tsdx watch",
"test": "tsdx test",
"version": "npm run build && git add dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mighty-justice/utils.git"
},
"keywords": [
"javascript",
"typescript",
"utils",
"formatting"
],
"author": "Mighty",
"license": "MIT",
"bugs": {
"url": "https://github.com/mighty-justice/utils/issues"
},
"homepage": "https://mighty-justice.github.io/utils/",
"prettier": {
"printWidth": 120,
"proseWrap": "always",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.tsx",
"src/**/*.ts"
],
"setupFilesAfterEnv": [
"./test/setup.ts"
]
},
"files": [
"dist",
"index.js"
],
"peerDependencies": {
"lodash": "^4.0.0",
"mobx": "^4.0.0 || ^5.0.0",
"mobx-react": "^5.0.0",
"react": "^16.0.0"
},
"resolutions": {},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.11",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/numeral": "^2.0.2",
"@types/react": "17.0.38",
"babel-jest": "^27.4.6",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"lodash": "4.17.21",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"np": "^5.1.0",
"numeral": "^2.0.6",
"react": "^16",
"react-dom": "^16",
"source-map-explorer": "^2.5.0",
"tsdx": "^0.14.1"
},
"dependencies": {
"classnames": "^2.2.6",
"date-fns": "^2.24.0",
"decimal.js": "^10.3.1",
"fast-memoize": "^2.5.2",
"html-react-parser": "1.4.5",
"iso8601-duration": "^1.1.7",
"moment": "^2.24.0",
"numeral": "^2.0.6"
}
}