forked from kenany/json2toml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "json2toml",
"version": "2.1.0",
"description": "JSON to TOML converter",
"keywords": [
"json",
"toml"
],
"repository": "KenanY/json2toml",
"license": "MIT",
"author": "Kenan Yildirim <[email protected]> (http://kenany.me/)",
"main": "index.js",
"files": [
"index.js",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"engines": {
"node": "10 || 12 || >=14"
},
"scripts": {
"lint": "eslint .",
"release": "semantic-release",
"test": "nyc --reporter html --reporter text tape test/index.js"
},
"dependencies": {
"lodash.foreach": "^4.5.0",
"lodash.isdate": "^4.0.1",
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.keys": "^4.2.0",
"strftime": "^0.10.0"
},
"devDependencies": {
"@kenan/eslint-config": "^8.0.4",
"@kenan/renovate-config": "^1.5.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": "^7.26.0",
"nyc": "^15.1.0",
"semantic-release": "^17.4.2",
"tape": "^5.2.2"
}
}