-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
{
"name": "json2toml",
"version": "6.1.1",
"description": "JSON to TOML converter",
"keywords": [
"json",
"toml"
],
"repository": "github:kenany/json2toml",
"license": "MIT",
"author": "Kenan Yildirim <[email protected]> (https://kenany.me/)",
"main": "index.js",
"types": "index.d.ts",
"files": [
"CHANGELOG.md",
"index.d.ts",
"index.js",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"engines": {
"node": "18 || >=20"
},
"scripts": {
"clean": "rimraf --glob test/**/*.d.ts *.d.ts",
"lint": "eslint .",
"release": "semantic-release",
"type-coverage": "type-coverage --at-least 96 --detail --strict",
"prebuild": "npm run clean",
"build": "tsc",
"pretest": "npm run build",
"test": "nyc --reporter html --reporter text tape test/*.js",
"prepack": "npm run build"
},
"dependencies": {
"lodash.isdate": "^4.0.1",
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"strftime": "^0.10.3"
},
"devDependencies": {
"@kenan/eslint-config": "^11.1.11",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^18.2.4",
"@types/lodash.isdate": "^4.0.9",
"@types/lodash.isempty": "^4.4.9",
"@types/lodash.isplainobject": "^4.0.9",
"@types/strftime": "^0.9.8",
"@types/tape": "^5.8.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"tape": "^5.9.0",
"type-coverage": "^2.29.7",
"typescript": "^5.7.2"
}
}