-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "@agnostico/browser-solidity-compiler",
"version": "0.1.1",
"description": "Solidity compiler that works in the browser",
"homepage": "https://agnostico.xyz",
"keywords": [
"solidity",
"browser",
"typescript",
"javascript",
"react",
"vuejs",
"angular",
"nodejs"
],
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git://github.com/rexdavinci/browser-solidity-compiler.git"
},
"bugs": {
"url": "https://github.com/rexdavinci/browser-solidity-compiler/issues"
},
"main": "dist/index.js",
"scripts": {
"test": "jest --verbose",
"test:cover": "jest --coverage",
"lint": "eslint .",
"build": "tsc"
},
"author": "Abdulhafiz Ahmed <abdulhafiz@agnostico.xyz> (http://t.me/rexdavinci)",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"typescript": "^4.8.4"
}
}