forked from torchlight-api/torchlight-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 KB
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
{
"name": "@torchlight-api/torchlight-cli",
"version": "0.1.2",
"description": "A CLI for Torchlight - the syntax highlighting API",
"main": "index.js",
"scripts": {
"test": "standard --env jest && jest",
"build": "babel src --out-dir lib --copy-files \"--ignore\" \"src/stubs/**/*\""
},
"bin": {
"torchlight": "lib/bin/torchlight.js"
},
"keywords": [
"syntax",
"highlighting",
"torchlight"
],
"author": "Aaron Francis <aaron@hammerstone.dev> (https://torchlight.dev)",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"chokidar": "^3.5.2",
"commander": "^8.1.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.2",
"lodash.chunk": "^4.2.0",
"lodash.get": "^4.4.2",
"md5": "^2.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.12.13",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"standard": "^16.0.3"
},
"standard": {
"ignore": [
"tests",
"lib"
]
},
"jest": {
"clearMocks": true,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12.13.0"
}
}
]
]
}
}