1 | {
|
2 | "name": "normalize-scroll-left",
|
3 | "description": "Utility library to determine and normalize Element.scrollLeft behavior",
|
4 | "version": "0.2.1",
|
5 | "author": {
|
6 | "name": "Ali Taheri Moghaddar",
|
7 | "email": "ali.taheri.m@gmail.com"
|
8 | },
|
9 | "files": [
|
10 | "cjs",
|
11 | "esm"
|
12 | ],
|
13 | "repository": {
|
14 | "type": "git",
|
15 | "url": "git@github.com:alitaheri/normalize-scroll-left.git"
|
16 | },
|
17 | "keywords": [
|
18 | "rtl",
|
19 | "dom",
|
20 | "scroll-left",
|
21 | "scrollLeft",
|
22 | "normalize",
|
23 | "browser",
|
24 | "element"
|
25 | ],
|
26 | "scripts": {
|
27 | "build": "rimraf cjs esm && tsc --module commonjs --outDir cjs && tsc --module es6 --outDir esm",
|
28 | "prepublishOnly": "npm run build",
|
29 | "lint": "tslint -e \"node_modules/**\" \"src/**/*.ts\"",
|
30 | "test": "mocha -r ts-node/register \"src/**/*.spec.ts\""
|
31 | },
|
32 | "license": "MIT",
|
33 | "main": "cjs/main.js",
|
34 | "module": "esm/main.js",
|
35 | "types": "cjs/main.d.ts",
|
36 | "devDependencies": {
|
37 | "@types/chai": "^4.2.12",
|
38 | "@types/mocha": "^8.0.3",
|
39 | "@types/node": "^14.6.4",
|
40 | "chai": "^4.2.0",
|
41 | "mocha": "^8.1.3",
|
42 | "rimraf": "^3.0.2",
|
43 | "ts-loader": "^8.0.3",
|
44 | "ts-node": "^9.0.0",
|
45 | "tslint": "^6.1.3",
|
46 | "tslint-eslint-rules": "^5.4.0",
|
47 | "tslint-microsoft-contrib": "^6.2.0",
|
48 | "typescript": "^4.0.2"
|
49 | }
|
50 | }
|