-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
{
"name": "@saurer/apla-client-js",
"version": "3.0.0",
"main": "index.js",
"types": "index.d.ts",
"description": "Provides access to Apla REST API",
"author": "Saurer",
"license": "GPLv2",
"scripts": {
"build": "grunt",
"clean": "grunt clean",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/saurer/apla-client-js.git"
},
"browser": {
"node-webcrypto-ossl": false
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@types/base64-js": "^1.2.5",
"@types/browser-resolve": "^0.0.5",
"@types/elliptic": "^6.4.9",
"@types/jest": "^24.0.15",
"@types/long": "^4.0.0",
"@types/msgpack-lite": "^0.1.7",
"@types/node": "^12.0.10",
"@types/url-join": "^4.0.0",
"@types/url-template": "^2.0.28",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"grunt": "^1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-ts": "^6.0.0-beta.22",
"jest": "^24.8.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"dependencies": {
"base64-js": "^1.3.1",
"browser-resolve": "^1.11.3",
"centrifuge": "^2.3.0",
"elliptic": "^6.5.0",
"hash.js": "^1.1.7",
"int64-buffer": "^0.99.1007",
"isomorphic-webcrypto": "^2.3.5",
"long": "^4.0.0",
"msgpack-lite": "^0.1.26",
"node-webcrypto-ossl": "^1.0.48",
"query-string": "^6.8.1",
"rxjs": "^6.5.3",
"url-join": "^4.0.0",
"url-template": "^2.0.8"
}
}