-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "@dmytropaduchak/simple-bilinear-interpolation",
"version": "1.0.9",
"description": "A simple bilinear interpolation module that construct new data points within the range of a discrete set of known data points",
"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 && coveralls < report/lcov.info",
"test:dev": "jest --watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmytropaduchak/simple-bilinear-interpolation.git"
},
"author": {
"name": "Dmytro Paduchak",
"email": "[email protected]",
"url": "https://github.com/dmytropaduchak"
},
"keywords": [
"simple",
"ts",
"ts-node",
"typescript",
"interpolate",
"interpolation",
"bilinear-interpolation",
"interpolating",
"mathmathematics",
"numeric"
],
"bugs": {
"url": "https://github.com/dmytropaduchak/simple-bilinear-interpolation/issues"
},
"homepage": "https://github.com/dmytropaduchak/simple-bilinear-interpolation#readme",
"license": "ISC",
"devDependencies": {
"coveralls": "^3.0.2",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.31",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.2",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@dmytropaduchak/simple-linear-interpolation": "^1.0.8"
}
}