forked from deleterium/SmartC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "smartc-signum-compiler",
"version": "9999.9.0",
"description": "C Compiler for smart contracts on Signum network",
"main": "dist/smartc.js",
"types": "dist/smartc.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deleterium/SmartC.git"
},
"keywords": [
"smartc",
"compiler",
"blockchain",
"c",
"signum"
],
"author": "Rui Deleterium",
"private": false,
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/deleterium/SmartC/issues"
},
"homepage": "https://github.com/deleterium/SmartC#readme",
"scripts": {
"lint": "npx eslint './src/**/*'",
"test": "JEST=true npx jest",
"test:ci": "JEST=true npx jest --coverage",
"debug": "node esbuild.config.js && npx light-server -s . -p 7002 --no-reload --historyindex '/debug.html'",
"build": "npm run lint && node esbuild.config.js && npx tsc"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"esbuild": "^0.13.15",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"globule": "^1.3.4",
"jest": "^27.5.1",
"light-server": "^2.9.1",
"ts-jest": "^27.1.5",
"typescript": "^4.4.4"
}
}