-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 810 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 810 Bytes
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
{
"name": "solution",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@bazel/bazelisk": "1.10.1",
"@bazel/jasmine": "4.1.0",
"@bazel/typescript": "4.1.0",
"@types/jasmine": "3.9.0",
"jasmine": "3.9.0",
"jasmine-core": "3.9.0",
"npm-run-all": "4.1.5",
"tslint": "6.1.3",
"typescript": "4.3.5"
},
"scripts": {
"serve": "yarn serve:test",
"serve:debug": "ibazel run //packages/test:test-bin --config=debug",
"#### Test Commands ####": "###########################################",
"test": "run-s spec:*",
"spec:core": "bazel test //packages/core:core_spec_bin",
"#### Workspace Commands ####": "###########################################",
"bazel": "bazel",
"clean": "bazel clean"
},
"dependencies": {
"reflect-metadata": "0.1.13",
"tslib": "2.3.1"
}
}