-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "@ctrlpanel/core",
"version": "0.4.5",
"license": "UNLICENSED",
"repository": "ctrl-alt-deseat/ctrlpanel-core",
"main": "build/core.js",
"types": "build/core.d.ts",
"files": [
"build/"
],
"scripts": {
"prepare": "tsc",
"test": "nyc --extension .ts _mocha './test/**/*.ts'",
"posttest": "nyc report --reporter=html"
},
"dependencies": {
"@ctrlpanel/hkdf": "^1.0.1",
"@ctrlpanel/pbkdf2": "^1.0.0",
"@ctrlpanel/random-account-password": "^1.0.0",
"array-buffer-to-hex": "^1.0.0",
"base32-decode": "^1.0.0",
"base32-encode": "^1.1.1",
"decode-utf8": "^1.0.1",
"encode-utf8": "^1.0.2",
"fast-json-patch": "^2.0.7",
"hex-to-array-buffer": "^1.1.0",
"integer-array-ops": "^1.0.0",
"secure-remote-password": "^0.3.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@fanny-pack/core": "^1.0.0-beta.2",
"@fanny-pack/memory": "^1.0.0-beta.2",
"@trust/webcrypto": "^0.9.2",
"@types/mocha": "^5.2.6",
"@types/node": "^11.10.5",
"@types/uuid": "^3.4.4",
"assert-rejects": "^1.0.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"@fanny-pack/core": "^1.0.0-beta.1 || ^1.0.0-beta.2"
}
}