-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 990 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
39
40
{
"name": "semux-keeper-extension",
"version": "1.0.0",
"description": "Semux Keeper browser extension allows users to interact with Semux blockchain and dapps.",
"main": "background.js",
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "./node_modules/.bin/standard",
"lint:fix": "./node_modules/.bin/standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semuxproject/semux-keeper-extension.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/semuxproject/semux-keeper-extension/issues"
},
"homepage": "https://github.com/semuxproject/semux-keeper-extension#readme",
"standard": {
"ignore": [
"libs",
"js/bundle.js"
]
},
"dependencies": {
"buffer": "^5.2.1",
"jquery": "^3.4.1",
"long": "^4.0.0",
"node-forge": "^0.8.4",
"semux-js": "^1.4.0"
},
"devDependencies": {
"browserify": "^16.2.3",
"standard": "^12.0.1"
}
}