-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.99 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.99 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "liquidcache",
"version": "2.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "mocha --reporter mocha-json-output-reporter -r ts-node/register 'test/**/*.ts'",
"lint": "gts lint src/* && gts lint test/*",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix src/* && gts fix test/*",
"prepare": "npm run compile",
"jsdoc": "jsdoc2md --files ./src/*.ts --configure ./jsdoc2md.json > ./DOCS.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlaringPhoenix/LiquidCache.git"
},
"author": "FlaringPhoenix",
"license": "MIT",
"homepage": "https://github.com/FlaringPhoenix/LiquidCache#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/chai": "^4.3.9",
"@types/jasmine": "^5.1.2",
"@types/mocha": "^9.1.1",
"@types/node": "^18.18.9",
"chai": "^4.3.10",
"gts": "^5.2.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0",
"mocha-json-output-reporter": "^2.1.0",
"prettier": "3.0.3",
"semantic-release": "^22.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"volta": {
"node": "20.9.0"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"production",
{
"name": "preview",
"prerelease": true
}
],
"repositoryUrl": "https://github.com/FlaringPhoenix/LiquidCache.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"prepare": true
}
],
[
"@semantic-release/github",
{
"publish": true
}
]
]
}
}