-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"name": "solsp",
"description": "",
"version": "1.0.0",
"license": "MIT",
"author": "Riphal <[email protected]>",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"bin": {
"solsp": "./out/index.js"
},
"engines": {
"node": "*"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"test": "cross-env TS_NODE_FILES=true mocha",
"test:coverage": "cross-env TS_NODE_FILES=true nyc mocha",
"lint": "yarn prettier --check && yarn eslint",
"lint:fix": "yarn prettier --write && yarn lint --fix",
"eslint": "eslint --max-warnings 0 \"./src/**/*.ts\" \"./test/**/*.ts\"",
"prettier": "prettier \"*.json\" \"src/**/*.{ts,js,md,json,yml}\" \"test/**/*.{ts,js,md,json,yml}\"",
"clean": "rimraf out .nyc_output coverage *.tsbuildinfo",
"test:codecov": "cross-env TS_NODE_FILES=true nyc --reporter=lcov mocha && codecov"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@sentry/types": "6.19.1",
"@types/chai": "4.3.0",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "9.0.0",
"@types/module-alias": "^2.0.1",
"@types/node": "^14.14.37",
"@types/qs": "^6.9.7",
"@types/sinon": "10.0.6",
"@types/uuid": "^8.3.1",
"chai": "4.3.4",
"codecov": "3.8.3",
"cross-env": "7.0.3",
"eslint": "^7.23.0",
"mocha": "9.1.3",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"sinon": "12.0.1",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"dependencies": {
"@nomicfoundation/solidity-analyzer": "0.0.3",
"@sentry/node": "6.19.1",
"@sentry/tracing": "6.19.1",
"@solidity-parser/parser": "^0.14.0",
"@types/prettier": "2.4.3",
"c3-linearization": "0.3.0",
"fast-glob": "3.2.11",
"fs-extra": "^10.0.0",
"got": "^11.8.2",
"hardhat": "^2.6.0",
"js-yaml": "^4.1.0",
"module-alias": "^2.2.2",
"prettier": "2.5.1",
"prettier-plugin-solidity": "1.0.0-beta.24",
"qs": "^6.10.1",
"serialize-error": "8.1.0",
"uuid": "^8.3.2",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-protocol": "3.16.0",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-languageserver-types": "^3.16.0"
}
}