Updated ignored and published files

master
Futago-za Ryuu 6 years ago
parent 37698d8981
commit 123a20a83c

6
.gitignore vendored

@ -1,3 +1,3 @@
browser/* /browser
examples/*.js /examples/*.js
node_modules/* /node_modules

@ -1,85 +1,61 @@
{ {
"name": "pegjs", "name": "pegjs",
"version": "0.10.0", "version": "0.10.0",
"description": "Parser generator for JavaScript", "description": "Parser generator for JavaScript",
"keywords": [ "keywords": [
"parser generator", "parser generator",
"PEG" "PEG"
], ],
"homepage": "https://pegjs.org/", "homepage": "https://pegjs.org/",
"bugs": "https://github.com/pegjs/pegjs/issues", "bugs": "https://github.com/pegjs/pegjs/issues",
"license": "MIT", "license": "MIT",
"contributors": [ "contributors": [
"David Majda <david@majda.cz> (https://majda.cz/)", "David Majda <david@majda.cz> (https://majda.cz/)",
"Futago-za Ryuu <futagoza.ryuu@gmail.com>" "Futago-za Ryuu <futagoza.ryuu@gmail.com>"
], ],
"files": [ "files": [
"CHANGELOG.md", "bin",
"LICENSE", "lib",
"README.md", "!lib/.eslintrc.js"
"bin/peg.js", ],
"bin/options.js", "main": "lib/peg.js",
"bin/usage.txt", "bin": "bin/peg.js",
"examples/arithmetics.pegjs", "repository": "pegjs/pegjs",
"examples/css.pegjs", "scripts": {
"examples/javascript.pegjs", "lint": "gulp lint",
"examples/json.pegjs", "spec": "gulp test",
"lib/compiler/asts.js", "benchmark": "gulp benchmark",
"lib/compiler/index.js", "build:parser": "gulp build:parser",
"lib/compiler/js.js", "build:browser": "gulp build:browser",
"lib/compiler/opcodes.js", "clean": "gulp clean",
"lib/compiler/passes/generate-bytecode.js", "test:impact": "node test/impact",
"lib/compiler/passes/generate-js.js", "test:server": "node test/server/run",
"lib/compiler/passes/remove-proxy-rules.js", "test": "gulp"
"lib/compiler/passes/report-duplicate-labels.js", },
"lib/compiler/passes/report-duplicate-rules.js", "devDependencies": {
"lib/compiler/passes/report-infinite-recursion.js", "babel-preset-es2015": "6.24.1",
"lib/compiler/passes/report-infinite-repetition.js", "babel-core": "6.26.0",
"lib/compiler/passes/report-undefined-rules.js", "dedent": "0.7.0",
"lib/compiler/visitor.js", "babelify": "8.0.0",
"lib/grammar-error.js", "browserify": "14.5.0",
"lib/parser.js", "chai": "4.1.2",
"lib/peg.js", "del": "3.0.0",
"package.json" "eslint-config-futagozaryuu": "3.6.x",
], "express": "4.16.2",
"main": "lib/peg", "glob": "7.1.2",
"bin": "bin/peg.js", "gulp": "3.9.1",
"repository": "pegjs/pegjs", "gulp-eslint": "4.0.0",
"scripts": { "gulp-header": "1.8.9",
"lint": "gulp lint", "gulp-mocha": "4.3.1",
"spec": "gulp test", "gulp-rename": "1.2.2",
"benchmark": "gulp benchmark", "gulp-uglify": "3.0.0",
"build:parser": "gulp build:parser", "morgan": "1.9.0",
"build:browser": "gulp build:browser", "run-sequence": "2.2.0",
"clean": "gulp clean", "sinon": "4.0.1",
"test:impact": "node test/impact", "vinyl-buffer": "1.0.0",
"test:server": "node test/server/run", "vinyl-source-stream": "1.1.0"
"test": "gulp" },
}, "engines": {
"devDependencies": { "node": ">=4"
"babel-preset-es2015": "6.24.1", }
"babel-core": "6.26.0",
"dedent": "0.7.0",
"babelify": "8.0.0",
"browserify": "14.5.0",
"chai": "4.1.2",
"del": "3.0.0",
"eslint-config-futagozaryuu": "3.6.x",
"express": "4.16.2",
"glob": "7.1.2",
"gulp": "3.9.1",
"gulp-eslint": "4.0.0",
"gulp-header": "1.8.9",
"gulp-mocha": "4.3.1",
"gulp-rename": "1.2.2",
"gulp-uglify": "3.0.0",
"morgan": "1.9.0",
"run-sequence": "2.2.0",
"sinon": "4.0.1",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0"
},
"engines": {
"node": ">=4"
}
} }

Loading…
Cancel
Save