FoundKey/package.json

39 lines
854 B
JSON
Raw Normal View History

2021-05-12 14:29:17 +00:00
{
2021-05-16 09:22:19 +00:00
"name": "misskey-js",
2021-07-02 10:13:46 +00:00
"version": "0.0.6",
2021-05-16 09:22:19 +00:00
"description": "Misskey SDK for JavaScript",
"main": "./built/index.js",
"types": "./built/index.d.ts",
"scripts": {
"build": "npm run tsc",
"tsc": "tsc",
"tsd": "tsd",
2021-06-25 00:46:40 +00:00
"jest": "jest --coverage --detectOpenHandles",
2021-05-16 09:22:19 +00:00
"test": "npm run jest && npm run tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misskey-dev/misskey.js.git"
},
"devDependencies": {
"@types/jest": "^26.0.23",
2021-07-05 11:19:55 +00:00
"@types/node": "16.0.0",
"jest": "^27.0.6",
2021-05-16 09:22:19 +00:00
"jest-fetch-mock": "^3.0.3",
2021-06-25 00:12:18 +00:00
"jest-websocket-mock": "^2.2.1",
2021-05-16 09:22:19 +00:00
"mock-socket": "^9.0.3",
2021-06-25 00:12:18 +00:00
"ts-jest": "^27.0.3",
"ts-node": "10.0.0",
"tsd": "^0.17.0",
2021-07-05 11:19:55 +00:00
"typescript": "4.3.5"
2021-05-16 09:22:19 +00:00
},
"files": [
"built"
],
"dependencies": {
"autobind-decorator": "^2.4.0",
"eventemitter3": "^4.0.7",
"reconnecting-websocket": "^4.4.0"
}
2021-05-12 14:29:17 +00:00
}