-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "j-parser",
"version": "1.0.0",
"description": "### A comprehensive data serialization language parser ![GitHub](https://img.shields.io/github/license/bruk3/j-parser)",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint test/*.js src/*.js",
"lint-fix": "./node_modules/.bin/eslint test/*.js src/*.js --fix",
"coverage": "nyc --reporter=lcov --reporter=text npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bruk3/j-parser.git"
},
"author": "Bruk Zewdie",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bruk3/j-parser/issues"
},
"homepage": "https://github.com/Bruk3/j-parser#readme",
"dependencies": {
"chai": "^4.2.0",
"fast-xml-parser": "^3.17.4",
"js-yaml": "^3.14.0",
"mocha": "^8.1.3",
"sinon": "^9.2.0"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2"
}
}