-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "js-ini",
"version": "1.6.0",
"description": "parsing and serialize ini files",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Sdju/js-ini.git"
},
"bugs": {
"email": "[email protected]",
"src": "https://github.com/Sdju/js-ini/issues"
},
"scripts": {
"test": "vitest run",
"test-watch": "vitest",
"lint": "eslint --cache --ext .ts src test",
"build": "tsc -p ./tsconfig.min.json && esbuild \"./dist/index.js\" --minify --outfile=\"dist/index.min.js\"",
"publish": "npm run lint && npm run test && npm run build && npm publish"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"keywords": [
"ini",
"parse"
],
"author": "Denis Chernov<[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"esbuild": "^0.17.8",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.3",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.4"
}
}