-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "html-decision-tree",
"version": "0.0.6",
"description": "Image Description Decision Tree",
"main": "dist/decisiontree.js",
"types": "dist/decisiontree.d.ts",
"scripts": {
"build": "npx tsc; npx webpack",
"prepack": "npm install; npx tsc; npx webpack"
},
"maintainers": [
"Volker Sorge <[email protected]>"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/diagram-codesprint/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/zorkow/html-decision-tree"
},
"keywords": [
"decision tree",
"accessibility"
],
"homepage": "https://github.com/zorkow/html-decision-tree",
"dependencies": {},
"devDependencies": {
"ts-loader": "^6.2.0",
"tslint": "^5.12.1",
"tslint-jsdoc-rules": "^0.2.0",
"tslint-unix-formatter": "^0.2.0",
"typescript": "^3.*",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"files": [
"LICENSE",
"README.md",
"dist",
"samples",
"styles"
]
}