-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "dst-soil-taxonomy",
"version": "1.0.0",
"description": "Interactive USDA Digital Keys to Soil Taxonomy - offline-first classification system",
"main": "scripts/dst-core.js",
"license": "MIT",
"author": "Andrew G. Brown",
"repository": {
"type": "git",
"url": "https://github.com/brownag/DST.git"
},
"homepage": "https://brownag.github.io/DST",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "node scripts/tests.js",
"coverage": "c8 --reporter=text --reporter=lcov node scripts/tests.js",
"validate": "node scripts/validate-logic-consistency.js",
"validate:json": "node scripts/validate-logic-consistency.js --json",
"serve": "python3 -m http.server 8000 --directory . 2>/dev/null || python -m SimpleHTTPServer 8000",
"dev": "make dev",
"lint": "make lint",
"clean": "make clean"
},
"keywords": [
"soil",
"taxonomy",
"USDA",
"classification",
"soil-science",
"offline",
"web-app",
"pwa"
],
"exports": {
".": {
"require": "./scripts/dst-core.js",
"import": "./scripts/dst-core.js"
}
},
"files": [
"scripts/dst-core.js",
"data/dst-data.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"c8": "^11.0.0"
},
"optionalDependencies": {},
"private": false
}