-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
82 lines (82 loc) · 2.23 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
{
"name": "gatsby-remark-vscode",
"version": "3.3.1",
"description": "Gatsby plugin to provide VS Code’s syntax highlighting to Markdown code fences",
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"build": "node scripts/index.js",
"prebuild": "git submodule update --init --depth 1",
"check": "tsc -p .",
"test": "jest",
"test:update": "jest -u",
"posttest": "prettier --check 'src/**/*.js' && npm run check",
"prepublishOnly": "npm test",
"format": "prettier --write 'src/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewbranch/gatsby-remark-vscode.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"syntax",
"highlighting",
"markdown"
],
"author": "Andrew Branch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewbranch/gatsby-remark-vscode/issues"
},
"homepage": "https://github.com/andrewbranch/gatsby-remark-vscode#readme",
"devDependencies": {
"@types/decompress": "^4.2.3",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.21",
"@types/json5": "0.0.30",
"@types/node": "^12.12.5",
"@types/plist": "^3.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.22.0",
"gatsby": "^3.1.1",
"gatsby-cli": "^3.1.0",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-transformer-remark": "^3.1.0",
"glob": "^7.1.5",
"hast-util-raw": "^5.0.1",
"jest": "^26.6.3",
"mdast-util-to-hast": "^6.0.2",
"open": "^7.0.0",
"prettier": "^1.18.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rehype-stringify": "^6.0.0",
"remark-parse": "^7.0.1",
"remark-rehype": "^5.0.0",
"rimraf": "^3.0.2",
"synthwave-vscode": "git://github.com/robb0wen/synthwave-vscode",
"typescript": "^4.2.3",
"unified": "^8.4.1"
},
"dependencies": {
"decompress": "^4.2.0",
"json5": "^2.1.1",
"loglevel": "^1.6.4",
"plist": "^3.0.1",
"unist-util-visit": "^1.4.1",
"vscode-oniguruma": "^1.4.0",
"vscode-textmate": "^5.2.0"
},
"jest": {
"testMatch": [
"<rootDir>/test/index.js"
],
"globalSetup": "<rootDir>/test/setup.js",
"coveragePathIgnorePatterns": [
"lib"
]
}
}