-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.36 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
{
"name": "caf_ca",
"description": "Cloud Assistant implementation",
"version": "0.4.5",
"author": "Antonio Lain <antlai@cafjs.com>",
"license": "Apache-2.0",
"dependencies": {
"caf_components": "^0.4.0",
"caf_transport": "^0.4.0",
"caf_session": "^0.4.0",
"caf_security" : "^0.4.0",
"caf_sharing" :"^0.4.0",
"caf_pubsub" :"^0.4.0",
"get-parameter-names" : "^0.3.0",
"semver": "^5.4.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodeunit" : ">=0.9",
"caf_core": "^0.4.0",
"caf_redis": "^0.4.0",
"typescript": "4.9.5",
"@types/node": "18.15.11",
"jsdoc": "^3.4.2",
"docdash": "^1.2.0"
},
"main": "index",
"homepage": "http://www.cafjs.com",
"repository": {
"type": "git",
"url": "https://github.com/cafjs/caf_ca.git"
},
"scripts": {
"test": "node ./node_modules/.bin/nodeunit",
"eslint" : "./node_modules/.bin/eslint -c .eslintrc.js .",
"eslintfix" : "./node_modules/.bin/eslint -c .eslintrc.js --fix .",
"docs" : "rm -fr docs; mkdir -p docs; ./node_modules/.bin/jsdoc --pedantic -c ./conf.json -d docs lib/*.js --readme ./README.md --package ./package.json",
"checktype" : "./node_modules/.bin/tsc"
},
"engines": { "node": ">= 0.10.1 " }
}