-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "smartc-signum-decompiler",
"version": "1.1.0",
"description": "Decompiler for Signum smart contracts. Output is SmartC Assembly",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"webpage": "npm run build && npx light-server -s . -p 7001 --no-reload",
"lint": "npx eslint src/*.ts",
"test": "npx jest",
"test:cover": "npx jest --coverage",
"build": "npx tsc",
"prepublish": "npx eslint src/*.ts && npx jest && npx tsc"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"jest": "^28.1.0",
"light-server": "^2.9.1",
"ts-jest": "^28.0.2",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deleterium/smartc-signum-decompiler.git"
},
"keywords": [
"signum",
"assembly",
"bytecode",
"decompiler"
],
"author": "Rui Santana",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/deleterium/smartc-signum-decompiler/issues"
},
"homepage": "https://github.com/deleterium/smartc-signum-decompiler#readme"
}