-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.16 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
{
"name": "@make-software/ces-js-parser",
"version": "1.3.2",
"description": "Parser for contract-level events encoded with Casper Event Standard (CES)",
"main": "dist/lib.node.js",
"types": "dist/index.d.ts",
"browser": "dist/lib.js",
"scripts": {
"prepare": "husky-run install",
"prepublishOnly": "npm run build && npm run test",
"lint": "eslint src/ --fix",
"lint:ci": "eslint src/ --max-warnings=0",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean && npm run lint",
"build": "webpack --config webpack.config.js",
"test": "jest"
},
"keywords": [
"casper",
"blockchain",
"smart-contract",
"web3"
],
"author": "",
"license": "ISC",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{js,css,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"ts-results": "^3.3.0"
},
"peerDependencies": {
"casper-js-sdk": "^2.12.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"casper-js-sdk": "^2.12.0",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"https-browserify": "^1.0.0",
"husky": "^4.3.8",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.3.0",
"url": "^0.11.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/make-software/ces-js-parser.git"
},
"bugs": {
"url": "https://github.com/make-software/ces-js-parser/issues"
},
"homepage": "https://github.com/make-software/ces-js-parser#readme"
}