-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.73 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "rtech-struct",
"version": "1.8.0",
"description": "Rtech Platform Superstruct Entity",
"main": "index.js",
"scripts": {
"clean": "rm -rf node_modules && rm -rf nodered/node_modules",
"lint": "eslint --ext .js index.js structures test",
"lint:fix": "eslint --fix --ext .js index.js structures test",
"test": "TZ=utc jest --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoctu/rtech-struct.git"
},
"dependencies": {
"date-fns": "^2.25.0",
"date-fns-tz": "^1.1.6",
"is-email": "^1.0.2",
"is-url": "*",
"is-uuid": "*",
"superstruct": "^0.15.3",
"uuid": "*"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-node": "*",
"eslint-plugin-standard": "*",
"jest": "^27.3.1",
"@types/jest": "^27.0.2"
},
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"modulePaths": [
"<rootDir>",
"/node_modules/"
],
"collectCoverage": true,
"coverageDirectory": "test/coverage",
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"collectCoverageFrom": [
"*.js",
"structures/*.js",
"test/*.js",
"!**/node_modules/**"
]
},
"keywords": [
"Yoctu",
"Rtech",
"Superstruct",
"Entity",
"Platform",
"Logisitic"
],
"author": "LaV",
"license": "ISC",
"bugs": {
"url": "https://github.com/yoctu/rtech-struct/issues"
},
"homepage": "https://github.com/yoctu/rtech-struct#readme"
}