forked from Sdju/js-ini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.4 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
63
64
65
{
"name": "js-ini",
"version": "1.5.1",
"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": "jest",
"lint": "eslint --cache --ext .ts src test",
"build": "tsc",
"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/jest": "^22.2.2",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.3",
"jest": "^22.4.3",
"ts-jest": "^22.4.2",
"typescript": "^4.1.3"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "./tsconfig.json"
}
},
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/**/*test.+(ts|tsx|js)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}