forked from kcwiki/lua-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "lua-json",
"version": "1.0.0",
"description": "Convert Lua tables to and from JSON. Forked from https://github.com/kcwiki/lua-json",
"keywords": [
"json",
"lua",
"table",
"format",
"parse"
],
"license": "MIT",
"author": "ppokyd (https://github.com/ppokyd)",
"contributors": [],
"homepage": "https://github.com/ppokyd/lua-json#readme",
"bugs": "https://github.com/ppokyd/lua-json/issues",
"repository": "ppokyd/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 && tape test.js",
"up": "yarn upgrade --latest"
},
"dependencies": {
"lodash": "^4.17.21",
"luaparse": "^0.3.0"
},
"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",
"tape": "^4.10.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"
}
}