-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
{
"name": "find-extrema",
"version": "1.0.0",
"description": "Numerically compute the extrema of a given (analytic) function: minima, maxima, and points of inflection",
"homepage": "https://github.com/dbkaplun/find-extrema",
"bugs": "https://github.com/dbkaplun/find-extrema/issues",
"repository": "https://github.com/dbkaplun/find-extrema",
"main": "lib/index.js",
"scripts": {
"find-convergent-ranges": "tools/find-convergent-ranges/find-convergent-ranges.js",
"test": "npm run tslint && npm run type-check && npm run jest",
"tslint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
"type-check": "tsc --noEmit",
"jest": "jest",
"build": "rm -r lib/ && babel src/ --out-dir lib/ --extensions \".ts,.tsx\" && tsc --emitDeclarationOnly",
"preversion": "npm run build && git add -A lib/ && npm test"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.49",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-typescript": "^7.0.0-beta.49",
"@types/jest": "^23.1.1",
"@types/node": "^10.3.4",
"jest": "^23.1.0",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.9.1"
},
"jest": {
"setupTestFrameworkScriptFile": "./test/setup.ts",
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(\\.|/)(test|spec)\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
},
"keywords": [
"extrema",
"extremum",
"minima",
"minimum",
"maxima",
"maximum",
"inflection",
"points",
"numerical",
"analysis",
"root",
"finding",
"algorithm"
],
"author": "Dan Kaplun <[email protected]>",
"license": "MIT"
}