tink/package.json

46 lines
1.0 KiB
JSON
Raw Normal View History

2022-01-26 15:01:10 +00:00
{
"name": "@mojoio/tink",
2022-05-12 14:42:36 +00:00
"version": "3.0.0",
2022-01-26 15:01:10 +00:00
"private": false,
"description": "an unofficial api abstraction for tink.com",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2022-01-26 15:01:10 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.7",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.7.8",
2022-01-26 15:01:10 +00:00
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
2022-02-15 15:51:16 +00:00
"dependencies": {
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartrequest": "^2.0.10",
"@pushrocks/smarturl": "^3.0.5"
2022-02-15 15:51:16 +00:00
},
2022-01-26 15:01:10 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2022-04-18 16:54:53 +00:00
}