-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
35 lines (35 loc) · 873 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
33
34
35
{
"name": "parse-diff",
"version": "0.11.1",
"description": "Unified diff parser",
"author": "Sergey Todyshev <[email protected]>",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:sergeyt/parse-diff.git"
},
"keywords": [
"diff",
"unidiff",
"parser"
],
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.5"
},
"scripts": {
"lint:fix": "eslint --fix parse.js __tests__/*.js",
"lint": "eslint parse.js __tests__/*.js",
"build": "babel -o index.js --minified parse.js",
"test": "jest",
"ci": "npm run lint && npm test"
}
}