43 lines
1,014 B
JSON
Executable file
43 lines
1,014 B
JSON
Executable file
{
|
|
"name": "tomlify-j0.4",
|
|
"version": "3.0.0",
|
|
"description": "A Object->TOML encoder/converter only for TOML v0.4.0",
|
|
"main": "tomlify.js",
|
|
"scripts": {
|
|
"dist": "uglifyjs --verbose --compress --mangle -o dist/tomlify.min.js tomlify.js",
|
|
"prepare": "npm run dist",
|
|
"test": "mocha --bail --reporter min test/*.js"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"CHANGELOG.md",
|
|
"dist/tomlify.min.js",
|
|
"tomlify.js"
|
|
],
|
|
"keywords": [
|
|
"toml",
|
|
"tomlify",
|
|
"stringify",
|
|
"encoder",
|
|
"ini",
|
|
"toml-j0.4"
|
|
],
|
|
"author": "Jak Wings <jakwings@gmail.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:jakwings/tomlify-j0.4.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jakwings/tomlify-j0.4/issues"
|
|
},
|
|
"homepage": "https://github.com/jakwings/tomlify-j0.4",
|
|
"devDependencies": {
|
|
"js-yaml": "~3.9.0",
|
|
"mocha": "~3.4.2",
|
|
"should": "~11.2.1",
|
|
"uglify-js": "~3.0.25",
|
|
"toml-j0.4": "~1.1.0"
|
|
}
|
|
}
|