-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.87 KB
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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@point-api/js-sdk",
"version": "1.1.38",
"description": "Javascript SDK for Point API",
"repository": "github:PointMail/js-sdk",
"homepage": "https://docs.pointapi.com",
"bugs": "https://github.com/PointMail/js-sdk/issues",
"keywords": [
"Point API",
"Point",
"autocomplete",
"completion",
"reply"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"dist"
],
"unpkg": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc && npm run build-umd",
"build-umd": "parcel build src/index-umd.ts --global PointApi --out-file index.js",
"release": "npm version patch -m \"Bumping to %s\" && git push origin master --tags",
"gen-docs": "typedoc --out docs src --theme markdown",
"publish": "npm run build-umd && npm run build && npm publish --access public && npm run push-to-site",
"push-to-site": "aws s3 cp ./dist/index.js s3://point-api-website/api.js"
},
"author": "Alex Iansiti <alex@pointapi.com>",
"license": "MIT",
"dependencies": {
"socket.io-client": "2.3.0"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/node": "12.7.12",
"@types/socket.io-client": "1.4.32",
"envify": "4.1.0",
"jest": "24.9.0",
"merge": "1.2.1",
"parcel-bundler": "1.12.4",
"ts-jest": "24.1.0",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"typedoc": "0.15.0",
"typedoc-plugin-markdown": "2.2.10",
"typescript": "3.6.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"browserslist": [
"last 1 Chrome version"
],
"publishConfig": {
"access": "public"
}
}