-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.25 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@manufac-analytics/perry",
"author": "maneetgoyal",
"version": "0.1.0-alpha.11",
"description": "Process Design Utilities",
"keywords": [
"Cheminformatics",
"Chemical Engineering",
"Chemistry",
"NodeJS",
"TypeScript"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/perry.esm.js",
"size-limit": [
{
"path": "dist/perry.cjs.production.min.js",
"limit": "400 KB"
},
{
"path": "dist/perry.esm.js",
"limit": "400 KB"
}
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/manufac-analytics/perry.git"
},
"bugs": {
"url": "https://github.com/manufac-analytics/perry/issues"
},
"homepage": "https://github.com/manufac-analytics/perry#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"refresh": "rm -rf dist",
"test": "tsdx test",
"lint": "tsdx lint --fix src test --ignore-pattern docs",
"prepare": "tsdx build && husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"preversion": "yarn build && yarn test && yarn docs",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md docs",
"postversion": "git push origin v$npm_package_version && git push && yarn publish --new-version $npm_package_version",
"predocs": "rm -rf docs",
"docs": "typedoc src/index.ts"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 120,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"useTabs": false
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.11.0",
"conventional-changelog-cli": "^2.1.1",
"husky": "^6.0.0",
"size-limit": "^4.11.0",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typedoc": "^0.22.5",
"typescript": "^4.2.4"
},
"dependencies": {
"kombi": "^1.0.0",
"ml-random-forest": "^2.1.0",
"ml-regression-multivariate-linear": "^2.0.3",
"ml-regression-robust-polynomial": "^3.0.0"
}
}