-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.91 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@fluree/fluree-client",
"version": "1.1.1",
"description": "Fluree client library for Node.js and browser environments",
"type": "module",
"main": "./dist/nodejs/index.js",
"types": "./dist/nodejs/index.d.ts",
"exports": {
".": {
"types": "./dist/nodejs/index.d.ts",
"import": "./dist/nodejs/index.js",
"require": "./dist/nodejs/index.cjs",
"browser": "./dist/browser/fluree-client.min.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluree/fluree-client"
},
"files": [
"/dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c",
"pretest": "scripts/start-fluree.sh",
"posttest": "scripts/stop-fluree.sh",
"test:node": "jest --silent=false --forceExit",
"test:browser": "npm run pretest && karma start karma.conf.cjs && npm run posttest",
"test": "npm run test:node && npm run test:browser",
"test:all-images": "node scripts/test-all-images.js",
"lint": "eslint --ext .ts src",
"coverage": "jest --coverage --silent=false",
"test:watch": "jest --watch --silent=false",
"generate-docs": "ts-readme",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"postinstall": "chmod +x scripts/*.sh scripts/*.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@trendyol/jest-testcontainers": "^2.1.1",
"@types/jasmine": "^5.1.4",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^48.0.4",
"jasmine-core": "^5.4.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.4",
"karma-typescript-es6-transform": "^5.5.4",
"karma-webpack": "^5.0.1",
"mocha": "^10.8.2",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.0.0",
"stream-browserify": "^3.0.0",
"testcontainers": "^10.6.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vm-browserify": "^1.1.2",
"webpack": "^5.96.1"
},
"dependencies": {
"@fluree/crypto": "^3.0.0",
"@types/uuid": "^9.0.8",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.1",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=14.0.0"
}
}