-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 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
56
57
58
59
60
{
"name": "mantaray-js",
"version": "1.0.4",
"description": "Mantaray data structure in JS",
"main": "dist/index.min.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "rimraf dist && npm run compile:types && npm run compile --env mode=production",
"compile": "webpack --progress --env target=node",
"compile:types": "tsc --emitDeclarationOnly --declaration --skipLibCheck",
"dev": "npm run compile -- --watch --env mode=development",
"lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" && prettier --check \"src/**/*.ts\"",
"check:types": "tsc --project tsconfig.json --skipLibCheck",
"test": "jest --verbose --config=jest.config.ts",
"bee-factory": "bee-factory start --detach 1.7.0"
},
"keywords": [
"mantaray",
"manifest",
"swarm",
"swarm-manifest",
"key-value"
],
"license": "BSD-3-Clause",
"dependencies": {
"get-random-values": "^1.2.2",
"js-sha3": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@ethersphere/bee-factory": "^0.4.1",
"@ethersphere/bee-js": "^5.0.0",
"@jest/types": "^27.0.6",
"@types/jest": "^26.0.24",
"@types/terser-webpack-plugin": "^5.0.4",
"@types/webpack-bundle-analyzer": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^1.1.2",
"jest": "^27.0.6",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.44.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2"
}
}