UNPKG

872 BJSONView Raw
1{
2 "name": "parse-diff",
3 "version": "0.10.0",
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.16.0",
20 "@babel/core": "^7.16.5",
21 "@babel/preset-env": "^7.16.5",
22 "eslint": "^8.4.1",
23 "eslint-config-prettier": "^8.3.0",
24 "eslint-plugin-prettier": "^4.0.0",
25 "jest": "^27.4.5",
26 "prettier": "^2.5.1"
27 },
28 "scripts": {
29 "lint:fix": "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 "ci": "npm run lint && npm test"
34 }
35}