forked from ably/ably-asset-tracking-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "ably-asset-tracking-js",
"version": "1.0.0-beta.1",
"description": "JavaScript client SDKs for the Ably Asset Tracking service.",
"main": "dist/main.js",
"typings": "index.d.ts",
"scripts": {
"build": "webpack",
"test": "jest ./test/unit",
"test:webserver": "webpack serve -c test/integration/support/webpack.config.ts",
"test:playwright": "ts-node test/integration/support/runPlaywrightTests.ts",
"lint": "eslint .",
"check-formatting": "prettier -c src/**/*.ts test/**/*.ts"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/geojson": "^7946.0.7",
"@types/jest": "^26.0.20",
"@types/mocha": "^8.2.0",
"@types/webpack-dev-server": "^3.11.1",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"axios": "^0.21.1",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"jest": "^26.6.3",
"mocha": "^8.2.1",
"mocha-loader": "^5.1.5",
"playwright": "^1.8.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"ably": "^1.2.5-beta"
}
}