This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
81 lines (81 loc) · 2.46 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
78
79
80
81
{
"name": "@alfresco/js-api",
"version": "7.3.0",
"description": "JavaScript client library for the Alfresco REST API",
"author": "Hyland Software, Inc. and its affiliates",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "shx rm -rf ./dist && npm-run-all build_cjs build_esm5 build_esm2015 build_types generate_packages",
"build_cjs": "tsc -p ./tsconfig/tsconfig.cjs.json",
"build_esm5": "shx rm -rf ./dist/esm5 && tsc -p ./tsconfig/tsconfig.esm5.json",
"build_esm2015": "shx rm -rf ./dist/esm2015 && tsc -p ./tsconfig/tsconfig.esm2015.json",
"build_types": "shx rm -rf ./dist/typings && tsc -p ./tsconfig/tsconfig.types.json",
"generate_packages": "node .make-packages.js",
"prepublish": "shx rm -rf ./typings && npm run build",
"test": "mocha --full-trace -r ts-node/register test/*.spec.ts test/**/*.spec.ts",
"coverage": "NODE_OPTIONS=--max_old_space_size=8192 nyc --reporter=lcov mocha -r ts-node/register --full-trace --bail test/*.spec.ts ./test/**/*.spec.ts",
"lint": "eslint . --ext .js,.ts"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-js-api.git"
},
"bugs": {
"url": "https://github.com/Alfresco/alfresco-js-api/issues"
},
"dependencies": {
"event-emitter": "^0.3.5",
"superagent": "^8.0.9",
"tslib": "^2.6.1"
},
"devDependencies": {
"@cspell/eslint-plugin": "^7.3.6",
"@types/chai": "^4.2.3",
"@types/chai-spies": "^1.0.3",
"@types/event-emitter": "^0.3.3",
"@types/jsdom": "^21.1.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.9",
"@types/superagent": "^4.1.18",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"chai": "4.3.10",
"chai-spies": "^1.0.0",
"eslint": "^8.46.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-prettier": "^5.0.0",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^3.0.3",
"shx": "^0.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"license": "Apache-2.0",
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true
},
"keywords": [
"alfresco"
]
}