-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 743 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "treeflex",
"version": "2.0.1",
"description": "Treeflex is a flexbox based CSS library for drawing hierarchy trees with HTML lists.",
"keywords": ["css", "flexbox", "scss", "hierarchy tree", "tree", "css tree"],
"main": "/docs/index.html",
"devDependencies": {
"highlight.js": "^9.12.0",
"node-sass": "^4.9.3",
"parcel-bundler": "^1.9.7"
},
"scripts": {
"start": "parcel src/site/index.html -d docs_dev --open --port 8080",
"build": "rm -rf dist docs && parcel build src/site/index.html --public-url /treeflex/ -d docs --no-source-maps && parcel build src/core/js/treeflex.js src/core/scss/treeflex.scss -d dist/css"
},
"files": ["dist/", "src/"],
"author": "dumptyd",
"license": "MIT"
}