-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.55 KB
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
{
"name": "@contentstack/delivery-sdk",
"version": "4.0.0-beta.5",
"type": "commonjs",
"main": "./dist/cjs/src/index.js",
"types": "./dist/types/src/index.d.ts",
"publishConfig": {
"tag": "beta"
},
"scripts": {
"prepack": "npm run test",
"prepare": "npm run build",
"test": "jest ./test/unit",
"test:unit": "jest ./test/unit",
"test:api": "jest ./test/api",
"lint": "eslint . -c .eslintrc.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json"
},
"dependencies": {
"@contentstack/core": "^1.0.1",
"@contentstack/utils": "^1.3.3",
"@types/humps": "^2.0.6",
"dotenv": "^16.3.1",
"humps": "^2.0.1"
},
"files": [
"dist",
"package.json",
"README.md"
],
"devDependencies": {
"@nrwl/jest": "^17.2.8",
"@types/jest": "^29.5.11",
"axios-mock-adapter": "^1.22.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"webpack-cli": "^5.1.4"
}
}