-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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
{
"name": "agentframework",
"version": "2.0.5",
"sideEffects": false,
"engines": {
"node": ">=8",
"typescript": ">=3"
},
"main": "lib/index.ts",
"description": "TypeScript that scales",
"scripts": {
"cov": "npm run test:coverage && npm run report",
"dev": "tsmon tools/jasmine.ts --config=tools/jasmine.json",
"dev:spec": "tsmon tools/jasmine.ts --config=tools/jasmine.spec.json",
"debug": "ndb tsmon tools/jasmine.ts --config=tools/jasmine.debug.json",
"build": "tsc --project tsconfig.json --noEmit",
"test": "ts-node tools/jasmine.ts --config=tools/jasmine.json",
"test:coverage": "nyc npm run test",
"report": "open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentframework/agentframework.git"
},
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"keywords": [
"agent",
"aop",
"typescript",
"es6",
"dependency injection",
"proxy",
"interceptor",
"ioc",
"codegen"
],
"author": "Ling Zhang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/agentframework/agentframework/issues"
},
"homepage": "https://github.com/agentframework/agentframework#readme"
}