-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.33 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
58
59
60
61
62
63
64
{
"name": "@ianwalter/decision-tree",
"version": "5.0.2",
"description": "A utility for traversing decision trees by selecting options",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Ian Walter",
"url": "https://ianwalter.dev"
},
"main": "dist/decision-tree.js",
"module": "dist/decision-tree.m.js",
"scripts": {
"lint": "eslint .",
"pretest": "modulize",
"test": "bff"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ianwalter/decision-tree.git"
},
"keywords": [
"decision",
"tree",
"traverse",
"traversal",
"quiz",
"survey"
],
"bugs": {
"url": "https://github.com/ianwalter/decision-tree/issues"
},
"homepage": "https://github.com/ianwalter/decision-tree#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ianwalter/base-error": "^6.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.14.1",
"@generates/modulizer": "^7.0.1",
"@ianwalter/bff": "^9.13.0",
"@ianwalter/eslint-config": "^6.2.0",
"@ianwalter/renovate-config": "^1.4.4"
},
"browserslist": "> 2%, not dead",
"eslintConfig": {
"root": true,
"extends": [
"@ianwalter"
]
},
"eslintIgnore": [
"dist"
],
"renovate": {
"extends": [
"@ianwalter"
]
}
}