All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
30 lines
638 B
JSON
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"
|
|
}
|
|
}
|