-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "toml-nodejs",
"version": "0.3.1",
"description": "A TOML decoding library for Node.js",
"homepage": "https://github.com/huan231/toml-nodejs#readme",
"bugs": "https://github.com/huan231/toml-nodejs/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/huan231/toml-nodejs.git"
},
"license": "MIT",
"author": "Jan Szybowski <szybowski.jan@gmail.com>",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint . --report-unused-disable-directives --ext .cjs,.ts --max-warnings 0"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18.16"
}
}