58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"name": "lua-json",
|
|
"version": "1.0.1",
|
|
"description": "Convert Lua tables to and from JSON",
|
|
"keywords": [
|
|
"json",
|
|
"lua",
|
|
"table",
|
|
"format",
|
|
"parse"
|
|
],
|
|
"license": "MIT",
|
|
"author": "gakada (https://github.com/gakada)",
|
|
"contributors": [],
|
|
"homepage": "https://github.com/kcwiki/lua-json#readme",
|
|
"bugs": "https://github.com/kcwiki/lua-json/issues",
|
|
"repository": "kcwiki/lua-json",
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"bin": {},
|
|
"scripts": {
|
|
"format": "prettier --loglevel warn --write '**/*.{js,json,md,ts,yaml,yml}'",
|
|
"lint": "eslint --fix .",
|
|
"test": "yarn format && yarn lint && node test.js",
|
|
"up": "yarn upgrade --latest"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.17.11",
|
|
"luaparse": "^0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^10.0.1",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-prettier": "^5.0.0",
|
|
"eslint-plugin-prettier": "^3.1.0",
|
|
"prettier": "^1.18.2"
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parser": "babel-eslint"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 150,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all"
|
|
}
|
|
}
|