-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.09 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
75
{
"name": "owen-s-t-function",
"version": "1.0.0",
"description": "Approximate Owen's T function.",
"scripts": {
"build": "react-scripts build",
"clean": "git checkout tsconfig.json && node -r ts-node/register utils.ts clean",
"coverage": "npm run clean && nyc -r lcov -r text -r text-summary -r html mocha -r ts-node/register test/*ts",
"ignore": "git checkout tsconfig.json && node -r ts-node/register utils.ts ignore",
"prepare": "npm run ignore && tsc --declaration src/owen-s-t-function.ts",
"test": "npm run clean && mocha -r ts-node/register test/*ts",
"start": "react-scripts start"
},
"eslintConfig": {
"extends": "react-app"
},
"bugs": "https://github.com/iccicci/owen-s-t-function/issues",
"repository": "https://github.com/iccicci/owen-s-t-function",
"main": "src/owen-s-t-function.js",
"keywords": [
"owen",
"owen's",
"T function"
],
"engines": {
"node": ">=10.0"
},
"author": "Daniele Ricci <[email protected]> (https://github.com/iccicci)",
"contributors": [
"cicci (https://www.trinityteam.it/DanieleRicci#en)"
],
"license": "MIT",
"funding": {
"url": "https://www.blockchain.com/btc/address/12p1p5q7sK75tPyuesZmssiMYr4TKzpSCN"
},
"readmeFilename": "README.md",
"types": "src/owen-s-t-function.d.ts",
"dependencies": {
"math-erf": "1.0.0"
},
"devDependencies": {
"@types/mocha": "7.0.2",
"@types/node": "13.9.8",
"@types/react": "16.9.31",
"@types/react-dom": "16.9.6",
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"eslint": "6.8.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"mocha": "7.1.1",
"nyc": "15.0.0",
"plotly.js-dist": "1.53.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-scripts": "3.4.1",
"ts-node": "8.8.1",
"typescript": "3.8.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}