-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.33 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@weltn24/sticky-observer",
"description": "A simple and basic sticky observer (or watcher) on HTMLElement's in a given container",
"version": "1.1.1",
"main": "dist/sticky-observer.cjs.js",
"module": "dist/sticky-observer.esm.js",
"browser": "dist/sticky-observer.js",
"types": "dist/index.d.ts",
"author": "Patrick Dahms <pat.dahms@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/spring-media/sticky-observer.git"
},
"bugs": {
"url": "https://github.com/spring-media/sticky-observer/issues"
},
"homepage": "https://github.com/spring-media/sticky-observer#README",
"keywords": [
"sticky",
"scroll",
"observer",
"watcher",
"javascript",
"typescript"
],
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w & yarn dev:server",
"dev:server": "http-server -o ./demo/index.html",
"lint": "tslint --project tsconfig.json",
"test": "karma start karma.conf.js",
"beforestart": "yarn lint && yarn test && yarn build",
"release": "release-it",
"prettier": "prettier --write 'src/**/*.{ts,js,json}'"
},
"devDependencies": {
"@types/chai": "4.2.0",
"@types/karma": "3.0.3",
"@types/mocha": "5.2.7",
"@types/sinon": "7.0.13",
"@types/sinon-chai": "3.2.3",
"chai": "4.2.0",
"http-server": "13.1.0",
"husky": "3.0.4",
"karma": "4.3.0",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "1.3.0",
"karma-typescript": "4.1.1",
"lint-staged": "9.2.5",
"mocha": "6.2.0",
"prettier": "1.18.2",
"release-it": "12.3.6",
"rollup": "1.20.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "6.2.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.1.1",
"rollup-plugin-typescript2": "0.24.0",
"rollup-plugin-uglify": "6.0.2",
"sinon": "7.4.1",
"sinon-chai": "3.3.0",
"tslint": "5.19.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"tslint-no-unused-expression-chai": "0.1.4",
"typescript": "3.6.2"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write 'src/**/*.{ts,js,json}'",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}