-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 1.97 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
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
84
85
86
87
88
89
90
91
92
{
"name": "@clubinvestbr/solidityjs",
"description": "Parser to convert Javascript code to Solidity using abstract syntax tree",
"version": "0.1.0",
"author": "Rodrigo Oler <roodrigoprogrammer@gmail.com>",
"bugs": {
"url": "https://github.com/rodrigooler/solidity/issues"
},
"dependencies": {
"acorn": "6.0.4",
"glob": "^7.1.3"
},
"devDependencies": {
"@types/acorn": "4.0.4",
"@types/glob": "^7.1.1",
"@types/jest": "^23.3.11",
"@types/node": "10.12.18",
"husky": "1.3.1",
"jest": "^23.6.0",
"lint-staged": "8.1.0",
"prettier": "1.15.3",
"ts-jest": "^23.10.5",
"ts-node": "7.0.1",
"tslint": "5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "3.2.2"
},
"directories": {
"example": "examples"
},
"homepage": "https://github.com/rodrigooler/solidity#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"keywords": [
"blockchain",
"es6",
"javascript",
"parser",
"smart-contracts",
"solidity"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"yarn tslint",
"git add"
]
},
"main": "src/index.ts",
"prettier": {
"parser": "typescript",
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"private": false,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rodrigooler/solidity.git"
},
"scripts": {
"transpiler": "ts-node src/index.ts",
"test": "jest",
"tslint": "tslint -p .",
"tslint:fix": "tslint --fix -c ./tslint.json 'src/**/*{.ts,.tsx}'"
}
}