-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "@theiliad/tictoc",
"version": "1.0.6",
"description": "A framework-agnostic automated table of contents component!",
"main": "index.js",
"module": "index.cjs.js",
"browser": "index.browser.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c && tsc",
"build:watch": "rollup -c -w && tsc",
"build:demo": "ENV=demo rollup -c && tsc",
"build:demo:watch": "ENV=demo rollup -c -w && tsc",
"build:docs": "typedoc --out ./demo/api-reference --mode file --target ES6 ./src",
"deploy": "./scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GopherLabsLtd/ticTOC.git"
},
"keywords": [
"table of contents",
"TOC",
"typescript"
],
"author": "Gopher Labs Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/GopherLabsLtd/ticTOC/issues"
},
"homepage": "https://github.com/GopherLabsLtd/ticTOC#readme",
"devDependencies": {
"rollup": "^1.10.1",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.21.0",
"typedoc": "^0.14.2",
"typescript": "^3.4.5"
},
"publishConfig": {
"access": "public"
}
}