-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "cryptee-core",
"version": "1.0.8",
"description": "Library for data encryption using Trezor.",
"main": "dist/cryptee-core.js",
"scripts": {
"build": "shx rm -rf dist && webpack --config ./webpack/config.prod.babel.js --progress",
"build:npm": "shx rm -rf npm && shx mkdir ./npm && shx cp LICENSE ./npm && shx cp package.json ./npm && babel-node ./tools/build.js && webpack --config ./webpack/config.npm.babel.js --progress",
"compile": "tsc",
"test": "jest",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LukasRada/cryptee-core.git"
},
"author": "LukasRada",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/LukasRada/cryptee-core/issues"
},
"homepage": "https://github.com/LukasRada/cryptee-core#readme",
"dependencies": {
"trezor-connect": "6.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"babel-cli": "^6.11.4",
"babel-collect-imports": "1.1.0",
"babel-core": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.11.5",
"coveralls": "3.0.2",
"fs-extra": "7.0.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"ts-loader": "^5.2.2",
"typescript": "^3.1.3",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2"
}
}