59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "json-to-ast",
|
|
"version": "2.1.0",
|
|
"author": "Vlad Trushin",
|
|
"description": "JSON AST parser",
|
|
"homepage": "https://github.com/vtrushin/json-to-ast",
|
|
"repository": "vtrushin/json-to-ast",
|
|
"maintainers": [
|
|
{
|
|
"name": "Vlad Trushin <monospectr@mail.ru> (https://github.com/vtrushin)",
|
|
"email": "monospectr@mail.ru",
|
|
"github-username": "vtrushin"
|
|
}
|
|
],
|
|
"keywords": [
|
|
"json-parser",
|
|
"parser",
|
|
"ast",
|
|
"json",
|
|
"tree"
|
|
],
|
|
"main": "build.js",
|
|
"files": [
|
|
"build.js",
|
|
"LICENSE",
|
|
"README.md",
|
|
"CHANGELOG.md"
|
|
],
|
|
"engines": {
|
|
"node": ">= 4"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"watch": "rollup -c -w",
|
|
"pretest": "npm run build",
|
|
"test": "mocha",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.0",
|
|
"babel-helpers": "^6.24.1",
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
|
"babel-plugin-transform-object-assign": "^6.22.0",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-preset-stage-3": "^6.24.1",
|
|
"coveralls": "^3.0.2",
|
|
"mocha": "5.2.0",
|
|
"rollup": "^0.50.0",
|
|
"rollup-plugin-babel": "^3.0.2",
|
|
"rollup-plugin-commonjs": "^8.2.4",
|
|
"rollup-plugin-node-resolve": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"code-error-fragment": "0.0.230",
|
|
"grapheme-splitter": "^1.0.4"
|
|
},
|
|
"license": "MIT"
|
|
}
|