-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.27 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
{
"name": "contensis-management-api",
"version": "2.2.0",
"description": "Client for managing content using the Contensis Management API",
"engines": {
"node": ">=14"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "npx tslint src/**/*.ts",
"pretest": "rimraf coverage/*",
"build": "rimraf lib/* && npx tsc -p src/tsconfig-npm.json && npm run lint",
"test": "karma start --test-target npm",
"test:watch": "karma start --test-target npm --auto-watch --no-single-run",
"build:es5": "rimraf bundle-es5/* && npx tsc -p src",
"build:esnext": "rimraf bundle-es2015/* && npx tsc -p src/tsconfig-esnext.json && npm run lint",
"test:esnext": "karma start",
"all": "npm run build && npm run test && npm run build:esnext && npm run test:esnext"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contensis/contensis-management-api.git"
},
"author": "Zengenti Ltd <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/contensis/contensis-management-api/issues"
},
"homepage": "https://www.contensis.com/help-and-docs/apis/management-js",
"devDependencies": {
"@types/jasmine": "3.6.2",
"@types/node": "14.14.20",
"copy-webpack-plugin": "^6.4.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^3.6.0",
"karma": "^6.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^3.0.5",
"rimraf": "^2.7.1",
"ts-loader": "^3.5.0",
"tslint": "^5.20.1",
"typescript": "^4.7.4",
"uglify-js": "^3.10.3",
"webpack": "3.12.0"
},
"dependencies": {
"@types/graceful-fs": "^4.1.3",
"contensis-core-api": "^1.1.2",
"cross-fetch": "^3.0.6",
"es6-promise": "^4.2.8",
"form-data": "^3.0.0",
"graceful-fs": "^4.2.4",
"node-fetch": "^2.6.1",
"tslib": "^2.4.0",
"whatwg-fetch": "^3.4.0"
},
"directories": {
"lib": "lib"
},
"keywords": [
"contensis",
"cms",
"dxp",
"content",
"management",
"api",
"js",
"library",
"client"
]
}