-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.02 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
{
"name": "bfast",
"version": "6.0.1",
"description": "",
"repository": "https://github.com/fahamutech/bfast-js",
"main": "dist/bfast.node.js",
"browser": "dist/bfast.browser.js",
"types": "dist/lib/index.d.ts",
"module": "dist/esm/index.js",
"es2015": "dist/es2015/index.js",
"esm2015": "dist/esm/index.js",
"maintainers": ["joshuamshana"],
"scripts": {
"test": "yarn build && npx mocha specs/src/**",
"build": "yarn build:web && yarn build:node && yarn build:esm && yarn build:es2015 && yarn build:cjs",
"build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs",
"build:web": "npx webpack --config webpack.config.js",
"build:web:mjs": "npx gulp updateNode && npx tsc --build tsconfig.mjs.json",
"publish:web": "npx gulp updateNode && npm run build:web && npm publish",
"publish:web:beta": "npx gulp updateNode && npm run build:web && npm publish --tage beta",
"build:node": "webpack --config webpack.node.config.js",
"publish:node": "npm run build:node && npm publish ./node",
"publish:node:beta": "npx gulp updateNode && npm run build:node && npm publish ./node --tage beta",
"publish:all": "npm run publish:web && npm run publish:node"
},
"author": "Fahamu Tech",
"license": "MIT",
"dependencies": {
"axios": "~0.27.2",
"bufferutil": "~4.0.6",
"dexie": "~3.2.2",
"form-data": "~4.0.0",
"is-electron": "~2.2.1",
"js-sha1": "~0.6.0",
"socket.io-client": "~4.5.1",
"utf-8-validate": "~5.0.9"
},
"devDependencies": {
"@types/node": "~14.14.31",
"bfast-database-core": "~4.0.0-alpha.16",
"bfast-function": "~2.0.0-alpha.9",
"chai": "~4.3.6",
"ipfs-only-hash": "~4.0.0",
"mocha": "~10.0.0",
"mongodb": "~4.7.0",
"ts-loader": "~9.3.0",
"typescript": "~4.4.3",
"webpack": "~5.76.0",
"webpack-cli": "~4.9.2",
"ws": "~8.7.0"
},
"keywords": []
}