Files
coopgo/node_modules/what-the-diff/package.json
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

30 lines
638 B
JSON

{
"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"
}
}