-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.83 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
{
"name": "@torchlight-api/torchlight-cli",
"version": "0.0.0",
"description": "A CLI for Torchlight - the syntax highlighting API",
"source": "./src/index.js",
"module": "./dist/torchlight-cli.esm.js",
"main": "./dist/torchlight-cli.cjs.js",
"scripts": {
"test": "standard --env jest && jest",
"build": "rollup --config rollup.config.js",
"release:dev": "./bin/release dev",
"release:prod": "./bin/release prod"
},
"bin": {
"torchlight": "dist/bin/torchlight.cjs.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.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.3"
},
"standard": {
"ignore": [
"dist",
"tests"
]
},
"jest": {
"clearMocks": true,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12.13.0"
}
}
]
]
}
}