-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.29 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "cozy-keys-lib",
"version": "0.0.0-development",
"description": "Interactions between cozy-keys and a bitwarden server",
"browser": "transpiled/index.js",
"main": "transpiled/index.node.js",
"scripts": {
"setup:submodule": "git submodule init && git submodule update",
"setup": "yarn run setup:submodule",
"build:jslib:backup": "mv ./node_modules ./node_modules.back",
"build:jslib:restore": "mv ./node_modules.back ./node_modules",
"build:jslib:compile": "cd '@bitwarden/jslib' && cp -f ../../tsconfig.json . && npm install && npm run build",
"build:jslib:copy": "mkdir -p 'src/@bitwarden' && rm -rf 'src/@bitwarden/jslib' && mv -f '@bitwarden/jslib/dist/src' 'src/@bitwarden/jslib'",
"build:jslib": "yarn build:jslib:backup && yarn build:jslib:compile && yarn run build:jslib:copy && yarn build:jslib:restore",
"build:keys": "env BABEL_ENV=transpilation yarn babel src/ --out-dir transpiled --copy-files",
"build": "yarn run build:jslib && yarn run build:keys",
"watch": "yarn watch:keys",
"watch:keys": "yarn build:keys --watch",
"lint": "eslint 'src/**/*.{js,jsx}' 'playgrounds/src/**/*.{js,jsx}'",
"test": "NODE_OPTIONS=\"--max-old-space-size=8192\" jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-keys-lib.git"
},
"author": "Cozy",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/cozy/cozy-keys-lib/issues"
},
"homepage": "https://github.com/cozy/cozy-keys-lib#readme",
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/plugin-proposal-export-namespace-from": "7.16.7",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/runtime": "7.17.8",
"@material-ui/core": "3.9.4",
"@semantic-release/changelog": "3.0.6",
"@semantic-release/git": "7.0.18",
"@semantic-release/npm": "5.3.5",
"@testing-library/react": "11.2.7",
"@testing-library/react-hooks": "8.0.1",
"babel-loader": "8.2.4",
"babel-plugin-inline-react-svg": "1.1.2",
"babel-plugin-mock-imports": "1.2.0",
"babel-plugin-rewire": "1.2.0",
"babel-preset-cozy-app": "1.12.0",
"cozy-client": "^40.5.0",
"cozy-flags": "2.8.6",
"cozy-intent": "2.13.1",
"cozy-ui": "93.1.1",
"eslint-config-cozy-app": "1.6.0",
"jest": "26.2.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-test-renderer": "16.14.0",
"semantic-release": "^15.13.24"
},
"files": [
"src",
"src/@bitwarden",
"transpiled"
],
"dependencies": {
"@aspnet/signalr": "^1.1.4",
"@aspnet/signalr-protocol-msgpack": "^1.1.0",
"@cozy/minilog": "^1.0.0",
"big-integer": "^1.6.44",
"classnames": "^2.2.6",
"cozy-device-helper": "^2.1.0",
"cozy-logger": "^1.10.1",
"lodash": "^4.17.15",
"lunr": "^2.3.6",
"microee": "^0.0.6",
"node-forge": "^1.3.0",
"papaparse": "^5.1.1",
"prop-types": "^15.7.2",
"sweetalert": "^2.1.2",
"tldjs": "^2.3.1",
"zxcvbn": "^4.4.2"
},
"peerDependencies": {
"cozy-client": "^40.5.0",
"cozy-flags": "^2.8.6",
"cozy-intent": "^2.0.2",
"cozy-ui": "^93.1.1",
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}