smartunique/package.json

54 lines
1.1 KiB
JSON
Raw Normal View History

2017-07-14 15:18:15 +00:00
{
2018-10-06 13:38:55 +00:00
"name": "@pushrocks/smartunique",
2020-03-05 20:41:15 +00:00
"version": "3.0.3",
2018-10-06 13:38:55 +00:00
"private": false,
2017-07-14 15:18:15 +00:00
"description": "make things unique",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2018-10-06 13:38:55 +00:00
"test": "(tstest test/)",
"build": "(tsbuild)"
2017-07-14 15:18:15 +00:00
},
2017-07-17 15:01:10 +00:00
"repository": {
"type": "git",
"url": "https://gitlab.com/pushrocks/smartunique.git"
},
"keywords": [
"unique",
"key",
"uuid",
"shortid",
"lossless",
"pushrocks",
"TypeScript"
],
2017-07-14 15:18:15 +00:00
"devDependencies": {
2020-03-05 20:39:44 +00:00
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.28",
"@pushrocks/tapbundle": "^3.2.0",
"@types/node": "^13.7.7",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0"
2017-07-14 15:18:15 +00:00
},
"dependencies": {
2020-03-05 20:39:44 +00:00
"@types/shortid": "0.0.29",
"@types/uuid": "^7.0.0",
"shortid": "^2.2.15",
"uuid": "^7.0.2"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_web/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2020-03-05 20:39:45 +00:00
}