UNPKG

1.38 kBJSONView Raw
1{
2 "name": "@gyselroth/tubee-sdk-node",
3 "version": "0.0.19",
4 "description": "The official tubee sdk for node with typescript support",
5 "main": "build/api.js",
6 "scripts": {
7 "prebuild": "tsc",
8 "start": "tsc && nodejs build/main.js",
9 "build": "tsc && jest --coverage",
10 "test": "jest --coverage",
11 "coveralls": "coveralls < coverage/lcov.info"
12 },
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/raffis/tubee-client-cli.git"
16 },
17 "keywords": [
18 "tubee",
19 "node",
20 "sdk"
21 ],
22 "author": "Raffael Sahli <sahli@gyselroth.com>",
23 "license": "MIT",
24 "bugs": {
25 "url": "https://github.com/gyselroth/tubee-sdk-typescript-node/issues"
26 },
27 "dependencies": {
28 "@types/bluebird": "*",
29 "@types/request": "*",
30 "bluebird": "^3.5.2",
31 "http": "0.0.0",
32 "request": "^2.88.0"
33 },
34 "devDependencies": {
35 "@types/node": "^8.0.0",
36 "typescript": "^2.9.2",
37 "jest": "^23.0.1",
38 "ts-jest": "^22.4.6",
39 "coveralls": "^3.0.1"
40 },
41 "jest": {
42 "transform": {
43 "^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
44 },
45 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
46 "testPathIgnorePatterns": [
47 "/node_modules/",
48 "/swagger-codegen/"
49 ],
50 "moduleFileExtensions": [
51 "ts",
52 "tsx",
53 "js",
54 "jsx",
55 "json"
56 ]
57 }
58}