This repository has been archived by the owner on Nov 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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
{
"name": "appia",
"version": "0.0.1",
"description": "Simple Routing Library",
"author": "Sandro Lain",
"main": "dist/umd/index.js",
"browser": "dist/umd/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist/esm/*",
"dist/umd/*"
],
"scripts": {
"build": "npx rollup -c",
"watch": "npx rollup -cw",
"prepare": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:open": "jest --coverage && open ./coverage/lcov-report/index.html",
"docs:build": "npx typedoc ./src",
"docs:serve": "npm run docs:build && npx open-cli ./docs/typedocs/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandrolain/appia.git"
},
"keywords": [
"url",
"routing",
"route",
"library",
"spa",
"localstorage",
"sessionstorage",
"virtual",
"history",
"hash"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.0",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"happy-dom": "^1.18.2",
"jest": "^26.6.3",
"open-cli": "^7.1.0",
"rollup": "^2.34.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typedoc": "^0.23.23",
"typescript": "^4.1.2"
},
"dependencies": {
"htna-tools": "git+https://github.com/sandrolain/HTNA-tools.git#develop"
}
}