-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "@mediaurl/client",
"description": "MediaURL addon client",
"version": "2.4.0",
"main": "dist",
"scripts": {
"test": "jest",
"build": "tsc"
},
"dependencies": {
"@mediaurl/schema": "^2.3.1",
"buffer": "^6.0.3",
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.uniq": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"semver": "^7.3.5",
"url-parse": "^1.5.3"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.174",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.flatten": "^4.4.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.uniq": "^4.5.6",
"@types/lodash.uniqby": "^4.7.6",
"@types/node-fetch": "^2.5.10",
"@types/semver": "^7.3.8",
"@types/url-parse": "^1.4.4",
"jest": "^27.2.1",
"lint-staged": "^11.1.2",
"node-fetch": "2.6.1",
"simple-git-hooks": "^2.6.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"files": [
"dist"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,css,md}": [
"npx prettier --write",
"git add"
]
}
}