-
Notifications
You must be signed in to change notification settings - Fork 692
/
Copy pathpackage.json
80 lines (80 loc) · 1.67 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
{
"name": "spectacle-mdx-loader",
"version": "0.1.1",
"description": "Webpack MDX loader for Spectacle presentations",
"main": "src/index.js",
"engines": {
"node": ">=10"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/spectacle.git"
},
"dependencies": {
"@mdx-js/mdx": "^1.5.3",
"gray-matter": "^4.0.2",
"loader-utils": "^2.0.4",
"normalize-newline": "^3.0.0"
},
"scripts": {
"lint": "wireit",
"lint:fix": "wireit",
"prettier": "wireit",
"prettier:fix": "wireit"
},
"wireit": {
"lint": {
"command": "nps lint:pkg -- -- src",
"files": [
"../../.eslintignore",
"../../.eslintrc",
"*.js",
"src/**"
],
"output": [],
"packageLocks": [
"pnpm-lock.yaml"
]
},
"lint:fix": {
"command": "pnpm run lint || nps lint:pkg:fix -- -- src",
"files": [
"../../.eslintignore",
"../../.eslintrc",
"*.js",
"src/**"
],
"output": [],
"packageLocks": [
"pnpm-lock.yaml"
]
},
"prettier": {
"command": "nps prettier:pkg -- -- src",
"files": [
"../../.prettierignore",
"../../.prettierrc",
"*.js",
"src/**"
],
"output": [],
"packageLocks": [
"pnpm-lock.yaml"
]
},
"prettier:fix": {
"command": "pnpm run prettier || nps prettier:pkg:fix -- -- src",
"files": [
"../../.prettierignore",
"../../.prettierrc",
"*.js",
"src/**"
],
"output": [],
"packageLocks": [
"pnpm-lock.yaml"
]
}
}
}