-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "casperdash-utils",
"version": "1.0.15",
"description": "Casperdash utils",
"private": false,
"keywords": [
"typescript"
],
"main": "dist/lib.node.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run clean",
"build": "webpack --config webpack.config.js",
"build-all": "yarn clean && yarn build",
"deploy": "yarn build-all && npm publish",
"clean": "rimraf -r dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CasperDash/casperdash-utils.git"
},
"author": "CasperDash<hello@casperdash.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CasperDash/casperdash-utils/issues"
},
"homepage": "https://github.com/CasperDash/casperdash-utils",
"dependencies": {
"@ethersproject/bytes": "^5.6.1",
"blakejs": "^1.2.1",
"casper-js-sdk": "^2.9.1",
"webpack": "^5.74.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^28.1.6",
"copy-webpack-plugin": "^11.0.0",
"esbuild": "^0.15.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"tsc-alias": "^1.3.9",
"typescript": "^4.4.2",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}