planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

29
node_modules/what-the-diff/package.json generated vendored Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "what-the-diff",
"version": "0.6.0",
"description": "diff parsing library",
"main": "index.js",
"scripts": {
"build": "pegjs --cache -o lib/parser.js src/diff.pegjs",
"test": "nodeunit test/*.test.js",
"prepublish": "npm run build"
},
"repository": "git://github.com/kuychaco/what-the-diff.git",
"keywords": [
"diff",
"parser"
],
"files": [
"index.js",
"lib/**/*",
"src/**/*",
"test/**/*"
],
"author": "Katrina Uychaco <kuychaco@gmail.com>",
"license": "MIT",
"devDependencies": {
"dedent-js": "^1.0.1",
"nodeunit": "^0.10.2",
"pegjs": "^0.10.0"
}
}