script-equal
Version:
Check if one JavaScript code is equivalent to another code
57 lines (56 loc) • 1.19 kB
JSON
{
"name": "script-equal",
"version": "1.0.1",
"description": "Check if one JavaScript code is equivalent to another code",
"repository": "shinnn/script-equal",
"author": {
"name": "Shinnosuke Watanabe",
"url": "https://github.com/shinnn"
},
"scripts": {
"pretest": "eslint *.js & jscs *.js",
"test": "node test.js | tap-spec",
"coverage": "istanbul cover test.js",
"coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/shinnn/script-equal/blob/master/LICENSE"
}
],
"files": [
"index.js",
"LICENSE"
],
"keywords": [
"code",
"parse",
"compare",
"comparison",
"equal",
"equivalent",
"script",
"js",
"javascript",
"uglify",
"uglifyjs",
"uglify-js"
],
"dependencies": {
"uglify-js": "^2.4.15",
"xtend": "^4.0.0"
},
"devDependencies": {
"eslint": "^0.9.2",
"istanbul": "^0.3.2",
"istanbul-coveralls": "^1.0.1",
"jscs": "^1.7.3",
"tap-spec": "^2.1.0",
"tape": "^3.0.3"
},
"jscsConfig": {
"preset": "google",
"maximumLineLength": 98
}
}