-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 890 Bytes
/
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
{
"name": "config-ini-parser",
"version": "1.6.1",
"description": "JavaScript Configuration file(.ini) content parser, similar to python ConfigParser without I/O operations. Only one JavaScript file without any other dependencies. Compatible with NodeJS, TypeScript and Browsers.",
"main": "config-ini.js",
"scripts": {
"test": "mocha",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shangerxin/config-ini.git"
},
"keywords": [
"config",
"ini"
],
"author": "Erxin,Shang (Edwin)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/shangerxin/config-ini/issues"
},
"homepage": "https://github.com/shangerxin/config-ini#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"types": "config-ini.d.ts"
}