-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "@cfware/history-state",
"version": "1.0.0",
"description": "Browser History API state manager",
"main": "history-state.js",
"type": "module",
"scripts": {
"pretest": "cfware-lint .",
"tests-only": "nyc -s node test.js|tap-yaml-summary",
"test": "npm run -s tests-only",
"posttest": "nyc report --check-coverage"
},
"engines": {
"node": ">=18"
},
"author": "Corey Farrell",
"license": "MIT",
"keywords": [
"spa",
"history-api",
"browser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/history-state.git"
},
"bugs": {
"url": "https://github.com/cfware/history-state/issues"
},
"homepage": "https://github.com/cfware/history-state#readme",
"devDependencies": {
"@cfware/fastify-test-helper": "^1",
"@cfware/lint": "^4",
"@cfware/nyc": "^1",
"@cfware/tap-selenium-manager": "^3",
"libtap": "^1",
"nyc": "^15",
"tap-yaml-summary": "^0.2"
}
}