smartjson/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2017-01-28 14:23:26 +00:00
{
2018-07-23 22:38:54 +00:00
"name": "@pushrocks/smartjson",
2021-01-28 02:21:24 +00:00
"version": "4.0.6",
2018-09-05 22:11:46 +00:00
"private": false,
2017-01-28 14:23:26 +00:00
"description": "typed json handlers",
2020-10-03 11:20:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-01-28 14:23:26 +00:00
"scripts": {
2020-10-03 11:20:58 +00:00
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
2017-01-28 14:23:26 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartjson.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartjson/issues"
},
2017-02-27 13:05:03 +00:00
"homepage": "https://gitlab.com/pushrocks/smartjson#README",
"devDependencies": {
2020-10-03 11:20:58 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.52",
2021-01-28 02:21:23 +00:00
"@pushrocks/tapbundle": "^3.2.10",
"@types/node": "^14.14.22",
2020-10-03 11:20:58 +00:00
"tslint": "^6.1.3",
2019-07-04 15:04:24 +00:00
"tslint-config-prettier": "^1.18.0"
2017-02-27 13:05:03 +00:00
},
"dependencies": {
2020-10-03 11:20:58 +00:00
"@types/buffer-json": "^2.0.0",
"@types/fast-json-stable-stringify": "^2.0.0",
2020-10-03 11:20:58 +00:00
"buffer-json": "^2.0.0",
2019-12-15 19:05:20 +00:00
"fast-json-stable-stringify": "^2.1.0",
2019-07-04 15:03:15 +00:00
"lodash.clonedeep": "^4.5.0"
2019-07-04 15:04:24 +00:00
},
"files": [
2020-10-05 11:26:06 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-07-04 15:04:24 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-05 11:26:06 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-07-04 15:04:24 +00:00
]
2020-10-05 11:26:07 +00:00
}