This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.4 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.4 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
{
"name": "opcua",
"version": "1.0.0",
"description": "TypeScript / JavaScript OPC UA client for the browser",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clear": "rm -fr dist coverage",
"test:cov": "npm run clear && tsc --sourceMap && jest --coverage",
"test": "rm -rf ./compiled && tsc --project ./tests/tsconfig.json && jest",
"tsc": "tsc --project ./src/tsconfig.json --skipLibCheck",
"watch": "tsc --project ./src/tsconfig.json -w --skipLibCheck",
"prettier": "prettier --write \"./**/*.{js,ts,tsx,json,html,yml,scss}\"",
"prettier:ci": "prettier --list-different \"./**/*.{js,ts,tsx,json,html,yml,scss}\"",
"eslint": "eslint \"./**/*.{js,ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hbm/opcua.git"
},
"author": "Mirco Zeiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/hbm/opcua/issues"
},
"homepage": "https://github.com/hbm/opcua#readme",
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"reflect-metadata": "^0.1.13",
"typescript": "^3.8.3"
},
"dependencies": {
"classnames": "^2.2.6"
}
}