-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 5.74 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
88
89
90
91
92
93
94
{
"name": "algorithmist",
"version": "0.0.6",
"license": "Apache-2.0",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"test:libs:ai:astar": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/ai/test/pathfinding/astar.spec.ts",
"test:libs:ai:astar:graph": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/ai/test/pathfinding/astar-graph.spec.ts",
"test:libs:ai:astar:heap": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/ai/test/pathfinding/astar-heap.spec.ts",
"test:libs:ai:decision-tree": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/ai/test/decision-tree/decision-tree.spec.ts",
"test:libs:ai:fsm": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/ai/test/finite-state-machine/finite-state-machine.spec.ts",
"test:libs:expression-engine": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/expression-engine/test/expression-engine.spec.ts",
"test:libs:function-parser": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/function-parser/test/function-parser.spec.ts",
"test:libs:fp": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/functional-programming/test/fp.spec.ts",
"test:libs:item-allocation": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/item-allocation/test/allocation.spec.ts",
"test:libs:misc": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/misc/test/misc.spec.ts",
"test:libs:misc:math-types": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/misc/test/math-types.spec.ts",
"test:libs:optimize": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/optimization/test/optimize.spec.ts",
"test:libs:paging": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/paging/test/paging.spec.ts",
"test:libs:sort": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/sorting/test/sort.spec.ts",
"test:libs:text-vsm": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/text-vsm/test/vsm.spec.ts",
"test:tsmt:array-deque": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/array-deque/array-deque.spec.ts",
"test:tsmt:avltree": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/avl-tree/avltree.spec.ts",
"test:tsmt:cubic-spline": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/stack/stack.spec.ts",
"test:tsmt:disjoint-set": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/disjoint-set/disjointset.spec.ts",
"test:tsmt:graph": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/graph/graph.spec.ts",
"test:tsmt:heap": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/heap/heap.spec.ts",
"test:tsmt:hulls": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/geometry/hulls.spec.ts",
"test:tsmt:list": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/list/list.spec.ts",
"test:tsmt:math": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/math/math.spec.ts",
"test:tsmt:pqueue": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/pqueue/pqueue.spec.ts",
"test:tsmt:point": "npx jest -i libs/amyr-ts-lib/src/lib/libs/tsmt/test/geometry/point.spec.ts",
"test:tsmt:polygon": "npx jest -i libs/amyr-ts-lib/src/lib/libs/tsmt/test/geometry/polygon.spec.ts",
"test:tsmt:queue": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/queue/queue.spec.ts",
"test:tsmt:skip-list": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/skip-list/skiplist.spec.ts",
"test:tsmt:stack": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/stack/stack.spec.ts",
"test:tsmt:statistics": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/statistics/statistics.spec.ts",
"test:tsmt:statistics:bayes": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/statistics/bayes/bayes.spec.ts",
"test:tsmt:statistics:regression": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/statistics/regression/regression.spec.ts",
"test:tsmt:tree": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/tree/tree.spec.ts",
"test:tsmt:trie": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/datastructures/trie/trie.spec.ts",
"test:tsmt:utils": "npx jest -i ./libs/amyr-ts-lib/src/lib/libs/tsmt/test/utils/utils.spec.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.1.0",
"@angular/common": "~13.1.0",
"@angular/compiler": "~13.1.0",
"@angular/core": "~13.1.0",
"@angular/forms": "~13.1.0",
"@angular/platform-browser": "~13.1.0",
"@angular/platform-browser-dynamic": "~13.1.0",
"@angular/router": "~13.1.0",
"@nrwl/angular": "13.4.3",
"rxjs": "~7.4.0",
"tinyqueue": "2.0.3",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.0",
"@angular-eslint/eslint-plugin": "~13.0.1",
"@angular-eslint/eslint-plugin-template": "~13.0.1",
"@angular-eslint/template-parser": "~13.0.1",
"@angular/cli": "~13.1.0",
"@angular/compiler-cli": "~13.1.0",
"@angular/language-service": "~13.1.0",
"@nrwl/cli": "13.4.3",
"@nrwl/cypress": "13.4.3",
"@nrwl/eslint-plugin-nx": "13.4.3",
"@nrwl/jest": "13.4.3",
"@nrwl/linter": "13.4.3",
"@nrwl/nx-cloud": "latest",
"@nrwl/tao": "13.4.3",
"@nrwl/workspace": "13.4.3",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "~5.3.0",
"@typescript-eslint/parser": "~5.3.0",
"cypress": "^9.1.0",
"eslint": "8.2.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"jest": "27.2.3",
"jest-preset-angular": "11.0.0",
"prettier": "^2.3.1",
"ts-jest": "27.0.5",
"typescript": "~4.4.3"
}
}