This repository was archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.67 KB
/
package.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "mysocialapp-ts-client",
"version": "0.5.21",
"description": " Official Typescript / Javascript client to interact with MySocialApp API - Seamless Social Networking features for your app",
"main": "./lib/mysocialapp.js",
"typings": "./lib/mysocialapp.d.ts",
"scripts": {
"test": "jest test",
"prepare": "npm run build",
"build": "npm run build:lib && npm run build:dist && npm run build:squash",
"build:lib": "tsc",
"build:dist": "browserify --standalone=msa -e lib/mysocialapp.js > dist/mysocialapp.js",
"build:squash": "squash dist/mysocialapp.js > dist/mysocialapp.min.js"
},
"files": [
"lib"
],
"keywords": [
"activity stream",
"news feed",
"social app",
"social app api",
"serverless api",
"notification api"
],
"author": "MySocialApp",
"license": "MIT",
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"babel-jest": "^23.6.0",
"browserify": "^16.2.3",
"butternut": "^0.4.6",
"concat": "^1.0.3",
"jest": "^23.6.0",
"lodash": "^4.17.11",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"jest": {
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "(/src/.*\\.spec\\.ts)|(/test/.*\\.test\\.ts)$"
},
"dependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.15",
"@types/websocket": "0.0.40",
"@types/ws": "^6.0.1",
"axios": "^0.17.1",
"es6-promise": "^4.2.5",
"form-data": "^2.3.3",
"isomorphic-ws": "^4.0.1",
"moment": "^2.23.0",
"websocket": "^1.0.28",
"ws": "^6.1.4"
}
}