-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (34 loc) · 1.17 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
{
"name": "caf_session",
"description": "Cloud Assistants lib for supporting persistent sessions",
"version": "0.4.3",
"author": "Antonio Lain <antlai@cafjs.com>",
"license": "Apache-2.0",
"dependencies": {
"caf_components" : "^0.4.0",
"caf_transport" : "^0.4.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodeunit" : ">=0.9",
"caf_core" : "^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_session.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 " }
}