UNPKG

835 BJSONView Raw
1{
2 "name": "parse-diff",
3 "version": "0.8.1",
4 "description": "Unified diff parser",
5 "author": "Sergey Todyshev <stodyshev@gmail.com>",
6 "main": "index.js",
7 "types": "index.d.ts",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git@github.com:sergeyt/parse-diff.git"
12 },
13 "keywords": [
14 "diff",
15 "unidiff",
16 "parser"
17 ],
18 "devDependencies": {
19 "@babel/cli": "^7.13.10",
20 "@babel/core": "^7.13.10",
21 "@babel/preset-env": "^7.13.10",
22 "eslint": "^7.22.0",
23 "eslint-config-prettier": "^8.1.0",
24 "eslint-plugin-prettier": "^3.3.1",
25 "jest": "^26.6.3",
26 "prettier": "^2.2.1"
27 },
28 "scripts": {
29 "format": "eslint --fix parse.js __tests__/*.js",
30 "lint": "eslint parse.js __tests__/*.js",
31 "build": "babel -o index.js --minified parse.js",
32 "test": "jest"
33 }
34}