-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.96 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
{
"type": "module",
"name": "cwms-data-quality",
"version": "2.1.10",
"description": "A JavaScript implementation of the CWMS QualityTx class. Enables working with Time Series Quality integers. Can help in determining the screening, validity, value range, revision, replacement cause, replacement method, tests failing, and protection of a given Timeseries Quality Code. Created for use with CDA. ",
"main": "index.js",
"files": [
"dist/**/*"
],
"browser": "dist/index.min.js",
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/krowvin/cwms-data-quality.git",
"directory": "packages/cwms-data-quality"
},
"types": "dist/types/index.d.ts",
"devDependencies": {
"@types/node": "^18.15.11",
"@types/pako": "^2.0.0",
"csv-parse": "^5.3.6",
"terser": "^5.16.9",
"typescript": "^5.0.4"
},
"scripts": {
"test": "npm run build && node tests/quality_check.js",
"dist": "echo Creating Dist... && npm pack && xcopy /F /Y *.tgz dist && del *.tgz",
"minify": "cd src && tsc && cd build && node minify.cjs",
"build": "cd src && tsc",
"deploy": "echo Running Test... && npm run test && echo Building Files... && npm run build && npm publish"
},
"homepage": "https://krowvin.github.io/CWMS-Data-Quality",
"keywords": [
"cwms",
"hec",
"data",
"quality",
"cwms-data-quality",
"codes",
"corps",
"water",
"management",
"system"
],
"bugs": "https://github.com/krowvin/cwms-data-quality/issues",
"author": "Charles Graham <charles.r.graham@usace.army.mil>",
"contributors": [
"Charles Graham <charles.r.graham@usace.army.mil>"
],
"license": "MIT",
"dependencies": {
"ts-treemap": "^1.1.0",
"typescript-collections": "^1.3.3"
},
"paths": {
"*": [
"node_modules/*",
"dist/timeseries/*",
"dist/*"
]
}
}