-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (51 loc) · 1.33 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
{
"dependencies": {
"@eslint/config-array": "^0.19.0",
"axios": "^1.7.7",
"fs": "^0.0.1-security",
"glob": "^10.0.0",
"https": "^1.0.0",
"moment": "^2.30.1",
"pino": "^8.21.0"
},
"name": "@siemens/simatic-s7-webserver-api",
"version": "1.0.0",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Siemens",
"description": "Library for wrapping the Simatic S7-1500 Webserver API ",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/moment": "^2.11.29",
"@types/node": "^20.16.5",
"@types/pino": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.0.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"rimraf": "^4.0.0",
"ts-jest": "^29.2.4",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest"
},
"files": [
"/dist"
]
}