-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "normalize-scroll-left",
"description": "Utility library to determine and normalize Element.scrollLeft behavior",
"version": "0.2.1",
"author": {
"name": "Ali Taheri Moghaddar",
"email": "[email protected]"
},
"files": [
"cjs",
"esm"
],
"repository": {
"type": "git",
"url": "[email protected]:alitaheri/normalize-scroll-left.git"
},
"keywords": [
"rtl",
"dom",
"scroll-left",
"scrollLeft",
"normalize",
"browser",
"element"
],
"scripts": {
"build": "rimraf cjs esm && tsc --module commonjs --outDir cjs && tsc --module es6 --outDir esm",
"prepublishOnly": "npm run build",
"lint": "tslint -e \"node_modules/**\" \"src/**/*.ts\"",
"test": "mocha -r ts-node/register \"src/**/*.spec.ts\""
},
"license": "MIT",
"main": "cjs/main.js",
"module": "esm/main.js",
"types": "cjs/main.d.ts",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.0.2"
}
}