-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 982 Bytes
/
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
{
"name": "elementiot-client",
"version": "2.5.7",
"description": "Typescript client for ELEMENT IoT",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"lint": "eslint src/**/**",
"build": "tsc",
"test": "jest"
},
"author": "Tobias Lindener <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tlindener/element-kit.git"
},
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "^0.21.1",
"ws": "^7.4.4"
}
}