-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "polynomial-generator",
"version": "1.0.0",
"description": "Polynomial Generator",
"main": "dist/index.js",
"repository": "https://github.com/Leomotors/polynomial-generator",
"bugs": {
"url": "https://github.com/Leomotors/polynomial-generator/issues"
},
"homepage": "https://github.com/Leomotors/polynomial-generator#readme",
"author": "Leomotors",
"license": "MIT",
"scripts": {
"build-inner": "tsc && tsc -p tsconfig.bruh.json",
"build": "yarn lm-config && yarn clean && yarn build-inner",
"clean": "rimraf dist/*",
"docs": "yarn lm-config && typedoc",
"prepack": "yarn clean && yarn build && yarn lint && yarn test",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"lint": "eslint src && prettier --check \"{src,tests}/**/*.ts\"",
"test": "jest",
"ncu": "ncu -u \"/^(?!.*chalk)(?!.*globby).*$/\""
},
"exports": {
".": "./dist/main/index.js",
"./scoring": "./dist/scoring/index.js",
"./testing": "./dist/testing/index.js"
},
"typings": "./dist/main/index.d.ts",
"typesVersions": {
"*": {
"scoring": [
"./dist/scoring/index.d.ts"
],
"testing": [
"./dist/testing/index.d.ts"
]
}
},
"keywords": [
"math",
"polynomial"
],
"devDependencies": {
"@leomotors/scripts": "^3.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/chai": "^4.3.1",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.3"
}
}