-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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
{
"name": "range-interpolator",
"version": "1.0.2",
"description": "Interpolate a value from one range to another",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"prebuild": "rm -rf dist",
"build": "npx tsc",
"lint": "eslint --ignore-path .eslintignore src/*.ts",
"lint:fix": "eslint --ignore-path .eslintignore src/*.ts --fix",
"test": "jest --coverage",
"test:dev": "jest --watch"
},
"files": [
"dist",
"!*.spec.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sourabhv/range-interpolator.git"
},
"bugs": {
"url": "https://github.com/sourabhv/range-interpolator/issues"
},
"homepage": "https://github.com/sourabhv/range-interpolator#readme",
"author": "Sourabh Verma <[email protected]> (https://github.com/sourabhv)",
"license": "ISC",
"keywords": [
"simple",
"ts",
"ts-node",
"typescript",
"interpolate",
"range",
"interpolator",
"interpolation",
"linear-interpolation",
"range-interpolation",
"interpolating",
"numeric"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"coveralls": "^3.1.1",
"easing-functions": "^1.0.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"(src)/**/*.{js,ts,json}": [
"prettier --write",
"eslint --ignore-path .eslintignore src/**/*.ts"
]
}
}