-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "@torchlight-api/client",
"version": "0.0.4",
"description": "A general purpose JavaScript client for Torchlight - the syntax highlighting API",
"source": "*.js",
"type": "module",
"main": "./dist/client.cjs",
"module": "./dist/client.esm.js",
"scripts": {
"test": "standard --env jest && jest",
"build": "microbundle -f esm,cjs"
},
"author": "Aaron Francis <[email protected]> (https://torchlight.dev)",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.2",
"fs-extra": "^10.0.0",
"lodash.chunk": "^4.2.0",
"lodash.get": "^4.4.2",
"md5": "^2.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"microbundle": "^0.13.3",
"standard": "^16.0.3"
},
"jest": {
"clearMocks": true,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12.13.0"
}
}
]
]
},
"standard": {
"ignore": [
"tests",
"dists"
]
}
}