-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.95 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
{
"name": "crowdhandler-sdk",
"version": "2.3.1",
"description": "",
"homepage": "https://www.crowdhandler.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Crowdhandler/crowdhandler-javascript-sdk.git"
},
"files": [
"dist/**"
],
"main": "dist/crowdhandler.cjs.js",
"module": "dist/crowdhandler.esm.js",
"browser": "dist/crowdhandler.umd.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "npm run build:clean && npm run build:rollup && npm run build:legacy && npm run check:circular",
"build:clean": "rm -rf dist",
"build:rollup": "rollup -c",
"build:legacy": "tsc",
"check:circular": "madge --circular --extensions ts src/",
"release": "npm run build && npm publish --access public",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:server": "node test/local-server/server.js",
"test:server:dev": "npm run build && node test/local-server/server.js",
"test:client": "node test/local-server/test-client.js",
"test:local": "npm run build && npm run test:server & sleep 2 && npm run test:client"
},
"author": "",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"babel-jest": "^28.1.3",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"jest": "^28.1.3",
"madge": "^5.0.2",
"node-mocks-http": "^1.12.1",
"rollup": "^2.79.2",
"ts-jest": "^28.0.7",
"ts-loader": "^9.4.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/aws-lambda": "^8.10.114",
"axios": "^0.27.2",
"js-sha256": "^0.9.0",
"query-string": "^7.1.3",
"regenerator-runtime": "^0.14.1",
"zod": "^3.21.4"
}
}