-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (43 loc) · 1.56 KB
/
package.json
File metadata and controls
44 lines (43 loc) · 1.56 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
{
"name": "caf_cli",
"description": "Cloud Assistants browser and node.js client library for interacting with CAs",
"version": "0.4.5",
"author": "Antonio Lain <antlai@cafjs.com>",
"license": "Apache-2.0",
"dependencies": {
"caf_transport" : "^0.4.0",
"ws" : "^1.0.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"caf_core" : "^0.4.0",
"nodeunit" : ">=0.9",
"browserify" : "^17.0.0",
"uglify-es": "^3.3.8",
"typescript": "4.9.5",
"@types/node": "18.15.11",
"@types/ws": "^4.0.0",
"jsdoc": "^3.4.2",
"docdash": "^1.2.0"
},
"browser": {
"ws" : false
},
"main": "index",
"homepage": "http://www.cafjs.com",
"scripts": {
"test": "node ./node_modules/.bin/nodeunit",
"eslint" : "./node_modules/.bin/eslint -c .eslintrc.js .",
"eslintfix" : "./node_modules/.bin/eslint -c .eslintrc.js --fix .",
"build-js" : "browserify -r ./index.js:caf_cli -d -o public/caf_cli.js",
"build-min-js" : "browserify -r ./index.js:caf_cli | uglifyjs > public/caf_cli.min.js",
"build": "mkdir -p public; yarn run build-js && yarn run build-min-js",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/cafjs/caf_cli.git"
},
"engines": { "node": ">= 0.10.29 " }
}