forked from franco-chan/OneKey-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "@onekeyhq/rollout",
"version": "1.0.6",
"author": "OneKey <[email protected]>",
"homepage": "https://github.com/OneKeyHQ/OneKey-Desktop/packages/rollout",
"keywords": [
"OneKey",
"onekey-rollout",
"onekey firmware update"
],
"repository": {
"type": "git",
"url": "git://github.com/OneKeyHQ/OneKey-Desktop.git"
},
"bugs": {
"url": "https://github.com/OneKeyHQ/OneKey-Desktop/issues"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com"
},
"license": "SEE LICENSE IN LICENSE.md",
"description": "Small javascript library to get latest safe firmware version for OneKey update.",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"scripts": {
"test:unit": "jest",
"test:watch": "jest --watch",
"test:integration": "ts-node ./start-integration.ts",
"lint": "eslint . --ext .ts",
"type-check": "tsc --project tsconfig.json",
"type-check:watch": "yarn type-check -- --watch",
"build:lib": "rimraf lib && tsc --p ./tsconfig.lib.json"
},
"dependencies": {
"cross-fetch": "^3.0.6",
"runtypes": "^5.0.1"
},
"devDependencies": {}
}