-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 947 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "talkjs-node",
"version": "0.2.5",
"engines": {
"node": ">=10.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:kevlened/talkjs-node.git",
"author": "kevlened <boyettel@gmail.com>",
"license": "MIT",
"keywords": [
"talkjs",
"api",
"wrapper",
"sdk",
"node"
],
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:docs": "typedoc && concat-md docs/ > docs/example.md",
"test": "yarn build && node tests",
"release": "yarn test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"dependencies": {
"got": "^9.6.0"
},
"devDependencies": {
"@types/node": "^12.7.4",
"concat-md": "^0.3.0",
"sinon": "^7.4.2",
"tape": "^4.11.0",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.10",
"typescript": "^3.6.2"
}
}