smartyaml/package.json

53 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2017-05-25 13:09:01 +00:00
{
"name": "@pushrocks/smartyaml",
2020-10-26 11:39:22 +00:00
"version": "2.0.5",
"private": false,
2017-05-25 13:09:01 +00:00
"description": "handle yaml in smart ways",
2020-10-26 11:38:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-05-25 13:09:01 +00:00
"scripts": {
2020-10-26 11:38:58 +00:00
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
2017-05-25 13:09:01 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartyaml.git"
},
"keywords": [
"yaml",
"lossless"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartyaml/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartyaml#README",
"dependencies": {
2020-10-26 11:38:58 +00:00
"@types/js-yaml": "^3.12.5",
"js-yaml": "^3.14.0"
2017-05-25 13:09:01 +00:00
},
"devDependencies": {
2020-10-26 11:38:58 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.14.3"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2020-10-26 11:39:22 +00:00
}