-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"browser": "dist/index.js",
"description": "Make single page apps scroll according to the current URL hash.",
"devDependencies": {
"@types/history": "^4.7.11",
"@types/jasmine": "^3.10.3",
"@types/karma": "^6.3.3",
"history": "^5.0.0",
"jasmine-core": "^4.0.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.5.3",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"files": [
"dist",
"src"
],
"keywords": [
"scroll",
"fragment",
"hash",
"observer",
"spa",
"history",
"link",
"anchor"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"name": "scroll-to-fragment",
"peerDependencies": {
"history": "4 || 5"
},
"repository": "github:Scrivito/scroll-to-fragment",
"scripts": {
"build": "tsc && tsc --outDir dist/esm --target ES6 --declaration false",
"prepublishOnly": "rm -rf dist && npm test && npm run build",
"test": "karma start --single-run",
"watch": "karma start"
},
"types": "dist/index.d.ts",
"version": "1.0.12"
}