-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.64 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "caf",
"description": "Top level Caf.js project",
"private": true,
"version": "0.4.26",
"author": "Antonio Lain <antlai@cafjs.com>",
"homepage": "http://www.cafjs.com",
"devDependencies": {
"eslint": "^6.8.0",
"jsdoc": "^3.4.2",
"docdash": "^1.2.0",
"typescript": "4.9.5",
"@types/node": "18.15.11",
"nodeunit": ">=0.9"
},
"workspaces": {
"packages" : [
"main/*", "extra/*", "tools/*", "tools/*/bin", "apps/*", "apps/*/iot",
"apps/*/public/*", "app", "app/iot", "app/public/*",
"app2", "app2/iot", "app2/public/*",
"playground/*", "playground/*/iot", "playground/*/public/*",
"playground/app/*", "playground/app/*/iot", "playground/app/*/public/*"
],
"nohoist" : []
},
"caf" : {
"excludeFromPack" : {
"caf_amqp": "iot",
"caf_rpi": "always",
"caf_gadget_daemon": "always",
"caf_netproxy": "always",
"caf_deploy": "iot",
"caf_forward": "iot",
"caf_react": "iot",
"caf_registryproxy": "always",
"caf_sms": "iot",
"caf_smtp": "iot",
"caf_bank": "iot",
"caf_paypal": "iot",
"caf_platform": "iot",
"caf_weather": "iot",
"caf_bloom": "iot",
"caf_crossapp": "iot",
"caf_profiler": "iot",
"caf_pubsub" : "iot",
"caf_core" : "iot",
"caf_redis" : "iot",
"caf_ca" : "iot",
"caf_session": "iot",
"caf_dcinabox" : "iot",
"caf_recaptcha" : "iot",
"caf_users" : "iot",
"caf_graphql" : "iot",
"caf_template" : "iot",
"caf_appinfo" : "iot",
"caf_daily" : "iot",
"caf_fsm" : "iot",
"caf_webhook" : "iot",
"caf_kafka" : "iot"
}
},
"scripts": {
"installAll": "mkdir -p playground && yarn --ignore-optional",
"eslint": "./node_modules/.bin/eslint -c .eslintrc.js main/*/lib/*.js",
"eslintfix": "./node_modules/.bin/eslint -c .eslintrc.js --fix main/*/lib/*.js",
"test": "node ./node_modules/.bin/nodeunit main/*/test/",
"checktype" : "./node_modules/.bin/tsc",
"docs": "rm -fr docs/api; mkdir -p docs/api; ./node_modules/.bin/jsdoc --pedantic -c ./conf.json -d docs/api --readme ./README.md --package ./package.json docs/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cafjs/caf.git"
},
"engines": {
"node": ">= 8.0.0"
}
}