-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "datasync-filesystem-sdk",
"version": "1.0.12",
"description": "JavaScript filesystem SDK to query data synced via @contentstack/datasync-content-store-filesystem",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist typings coverage",
"build-ts": "npm run clean && tsc",
"build-doc": "npm run build-ts && ./node_modules/.bin/jsdoc dist/ -r -R README.md -d docs",
"watch-ts": "npm run clean && tsc -w",
"compile": "tsc",
"test": "jest --coverage",
"prepare": "npm run compile",
"pretest": "npm run build-ts",
"lint": "npx eslint -c eslint.json 'src/**/*.ts' --fix"
},
"author": "Contentstack LLC <support@contentstack.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/contentstack/datasync-filesystem-sdk/"
},
"bugs": {
"url": "https://github.com/contentstack/datasync-filesystem-sdk/issues",
"email": "support@contentstack.com"
},
"dependencies": {
"json-mask": "2.0.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"sift": "16.0.1"
},
"devDependencies": {
"@types/jest": "29.4.4",
"@types/lodash": "^4.17.10",
"@types/node": "^18.19.55",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"node-notifier": "^10.0.1",
"rimraf": "^4.4.1",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
}
}