-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 854 Bytes
/
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
{
"name": "solium-plugin-security",
"version": "0.1.1",
"description": "Official Solium Plugin for Security-related lint rules",
"main": "index.js",
"scripts": {
"test": "mocha --require should --reporter spec --recursive",
"lint": "eslint rules/ test/ index.js"
},
"keywords": [
"solium",
"soliumplugin",
"solidity",
"ethereum",
"blockchain",
"dapp",
"lint",
"static-analysis",
"smart-contract",
"security",
"decentralized"
],
"repository": {
"type": "git",
"url": "git+https://github.com/duaraghav8/solium-plugin-security.git"
},
"author": "Raghav Dua <[email protected]>",
"license": "MIT",
"peerDependencies": {
"solium": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1",
"should": "^13.1.3",
"solium": "1.1.0"
}
}