-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "@contentstack/datasync-asset-store-filesystem",
"version": "2.0.1",
"description": "Fillesystem asset store for DataSync libraries. Stores Contentstack asset-files in filesystem",
"main": "./dist",
"types": "./typings",
"homepage": "https://www.contentstack.com/docs/guide/synchronization/contentstack-datasync",
"directories": {
"doc": "README.md",
"example": "example",
"lib": "src",
"test": "test"
},
"keywords": [
"contentstack",
"utility",
"datasync"
],
"files": [
"/dist",
"/typings",
"/npm-shrinkwrap.json"
],
"scripts": {
"clean": "rimraf dist coverage",
"build-ts": "npm run clean && tsc",
"watch-ts": "npm run clean && tsc -w",
"test": "jest --coverage",
"tslint": "npx tslint -c tslint.json 'src/**/*.ts' --fix",
"compile": "tsc",
"prepare": "npm run compile",
"pretest": "npm run build-ts && rimraf _contents coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/contentstack/datasync-asset-store-filesystem"
},
"bugs": {
"url": "https://github.com/contentstack/datasync-asset-store-filesystem/issues",
"email": "[email protected]"
},
"author": "Contentstack LLC <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^4.3.4",
"lodash": "^4.17.15",
"mkdirp": "^1.0.4",
"request": "^2.88.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/jest": "23.3.10",
"@types/node": "10.12.2",
"jest": "^29.0.3",
"supertest": "3.3.0",
"tslint": "5.18.0",
"typescript": "^3.5.2"
}
}