-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "remark-torchlight",
"version": "0.0.3",
"description": "A remark plugin for Torchlight - the syntax highlighting API.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "standard --env jest && jest",
"release:dev": "./bin/release dev",
"release:prod": "./bin/release prod"
},
"keywords": [
"syntax",
"highlighting",
"torchlight"
],
"standard": {
"ignore": [
"tests"
]
},
"jest": {
"clearMocks": true,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": []
},
"author": "Aaron Francis <aaron@hammerstone.dev> (https://torchlight.dev)",
"license": "MIT",
"dependencies": {
"@torchlight-api/torchlight-cli": "^0.1.7",
"hast-util-from-parse5": "^7.1.0",
"parse5": "^6.0.1",
"unist-util-map": "^3.0.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"remark": "^14.0.1",
"remark-html": "^14.0.0",
"standard": "^16.0.3"
}
}