-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.77 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": "@butter-robotics/mas-javascript-api",
"version": "2.5.0",
"description": "Javascript API for Butter MAS platform",
"author": "Benny Megidish",
"license": "Apache-2.0",
"private": true,
"main": "butter/mas/api.js",
"types": "butter/mas/api.d.ts",
"directories": {
"doc": "docs",
"test": "tests"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint --fix",
"test": "jest --maxWorkers=1 .*.spec.ts",
"docs:standalone": "typedoc butter/mas/api.ts",
"docs:v2": "typedoc --entryPointStrategy expand ./butter/mas --plugin typedoc-plugin-markdown --out wiki/v2 --hideBreadcrumbs --cleanOutputDir false",
"compile": "tsc",
"build": "npm run clear:all && tsc && npm run copy:all && npm run permission",
"release": "standard-version",
"postrelease": "git push --follow-tags && npm run build && npm run publish",
"publish": "cd build && npm publish --scope @butter-robotics",
"permission": "node ./scripts/make_build_public.js",
"copy:all": "npm run copy:json && npm run copy:readme && npm run copy:license && npm run copy:ignore",
"copy:json": "shx cp -rf *.json ./build/",
"copy:readme": "shx cp -rf README.md ./build/",
"copy:license": "shx cp -rf LICENSE ./build/ && shx cp -rf NOTICE ./build/",
"copy:ignore": "shx cp -rf .*ignore ./build/",
"clear:all": "npm run clear:ts && npm run clear:json && npm run clear:readme && npm run clear:license && npm run clear:ignore",
"clear:ts": "shx rm -rf ./build/butter/",
"clear:json": "shx rm -f ./build/*.json",
"clear:readme": "shx rm -f ./build/README.md",
"clear:license": "shx rm -f ./build/LICENSE && shx rm -f ./build/NOTICE",
"clear:ignore": "shx rm -f ./build/.*ignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/butter-robotics/Butter.MAS.JavascriptAPI.git"
},
"keywords": [
"Butter",
"MAS",
"Javascript",
"Typescript",
"API"
],
"bugs": {
"url": "https://github.com/butter-robotics/Butter.MAS.JavascriptAPI/issues"
},
"homepage": "https://butter-robotics.web.app/#/library/documentation/mas_javascript_api",
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^28.1.0",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.3",
"tsc": "^2.0.4",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.7.2"
}
}