-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.2 KB
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
{
"name": "linear-estimate",
"version": "2.0.0",
"description": "Linear Estimate module creates a function that is able to estimate a linear approximation of a function value based on an array of data points.",
"main": "js/index.js",
"types": "js/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/tryggingamidstodin/linear-estimate.git"
},
"scripts": {
"test": "mocha js/test/index.js",
"clean": "rm -rf js",
"format": "prettier --config .prettierrc --write -l '{shared,service}/**/*.ts'",
"build": "npm run clean && tsc",
"prepublish": "npm run clean && npm run build && npm run test"
},
"keywords": [
"linear",
"estimate"
],
"author": "Tryggingamidstodin <bt.hugbunadargerd@tm.is> (https://github.com/tryggingamidstodin/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tryggingamidstodin/linear-estimate/issues"
},
"files": [
"js"
],
"dependencies": {},
"devDependencies": {
"@types/mocha": "^5.2.5",
"typescript": "^3.0.1",
"chai": "^3.3.0",
"mocha": "^2.1.0",
"prettier": "^1.14.2"
}
}