-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.51 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
53
54
55
56
57
{
"name": "beckhoff-js",
"version": "0.1.2",
"description": "This is a Promise based client implementation of the Twincat ADS protocol from Beckhoff written in TypeScript.",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"typings": "dist/main.d.ts",
"scripts": {
"test": "echo 'npm test is currently a no-op'",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"pretest": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"tsc": "tsc",
"dev": "tsc --watch --pretty",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stamp/beckhoff-js.git"
},
"keywords": [
"typescript",
"library",
"beckhoff",
"twincat",
"ads"
],
"author": "Jonathan Grimmtjärn",
"contributors": [
"Reijo Sirila (https://github.com/reijosirila)"
],
"licenses": [
{
"type": "Apache-2.0"
}
],
"bugs": {
"url": "https://github.com/stamp/beckhoff-js/issues"
},
"homepage": "https://github.com/stamp/beckhoff-js#readme",
"dependencies": {
"debug": "^4.1.1",
"validate": "^5.1.0",
"win32filetime": "^1.0.2"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"prettier": "^2.0.5",
"typescript": "^3.7.3"
}
}