-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 781 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 781 Bytes
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
{
"name": "codemirror-solidity",
"version": "0.2.5",
"description": "codemirror solidity mode",
"files": ["index.js"],
"main": "index.js",
"scripts": {
"build": "browserify browser.js -o solidity.js",
"release": "rm -rf package-lock.json && npm version minor && npm publish",
"patch": "rm -rf package-lock.json && npm version patch && npm publish"
},
"keywords": [
"solidity",
"codemirror"
],
"author": {
"name": "alincode",
"email": "[email protected]",
"url": "https://github.com/alincode"
},
"homepage": "https://github.com/alincode/codemirror-solidity#readme",
"license": "MIT",
"peerDependencies": {
"codemirror": "5.x"
},
"devDependencies": {
"browserify": "^16.5.0",
"codemirror": "^5.56.0"
}
}