-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.07 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
{
"name": "caf_transport",
"description": "Cloud Assistant Framework transport helper methods.",
"version": "0.4.2",
"author": "Antonio Lain <antlai@cafjs.com>",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"eslint": "^6.8.0",
"nodeunit": ">=0.9",
"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_transport.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 "
}
}