-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.16 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
{
"name": "test_rk_dtmc_1",
"author": "Contentstack LLC <support@contentstack.com>",
"version": "2.0.1",
"description": "The primary module of Contentstack DataSync. Syncs Contentstack data with your server using Contentstack Sync API",
"main": "dist/index.js",
"dependencies": {
"@braintree/sanitize-url": "^6.0.2",
"debug": "^4.3.4",
"dns-socket": "^4.2.2",
"lodash": "^4.17.21",
"marked": "^4.1.0",
"write-file-atomic": "4.0.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/debug": "0.0.31",
"@types/jest": "23.3.11",
"@types/lodash": "4.14.119",
"@types/marked": "^4.0.7",
"@types/mkdirp": "0.5.2",
"@types/nock": "9.3.0",
"@types/node": "10.12.12",
"@types/rimraf": "2.0.2",
"@types/write-file-atomic": "2.1.1",
"eslint": "^8.14.0",
"jest": "^29.0.3",
"jest-html-reporter": "^3.7.0",
"mkdirp": "^1.0.4",
"nock": "^10.0.6",
"rimraf": "^2.6.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.1",
"tslint": "^5.18.0",
"typescript": "^4.9.4"
},
"scripts": {
"clean": "rimraf dist typings coverage .tokens .ledger .checkpoint",
"build-ts": "npm run clean && tsc",
"watch-ts": "npm run clean && tsc -w",
"compile": "tsc",
"prepare": "npm run compile",
"start": "dist",
"tslint": "npx tslint -c tslint.json 'src/**/*.ts' --fix",
"test": "PLUGIN_PATH=./test/dummy jest --colors --coverage --verbose",
"lint": "eslint",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=8"
},
"keywords": [
"contentstack",
"DataSync",
"utility"
],
"files": [
"/dist",
"/typings",
"/npm-shrinkwrap.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/contentstack/datasync-manager"
},
"types": "./typings",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentstack/datasync-manager/issues"
},
"homepage": "https://www.contentstack.com/docs/guide/synchronization/contentstack-datasync"
}