-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.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
{
"name": "@membrana/sdk",
"version": "0.1.1",
"description": "Membrana Platform SDK",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "ts-mocha '{src/**/*.spec,test/*}.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MembranaPlatform/sdk.git"
},
"keywords": [],
"contributors": [
{
"name": "Alex Badmashkaev",
"url": "https://github.com/alexbadm"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/MembranaPlatform/sdk/issues"
},
"homepage": "https://github.com/MembranaPlatform/sdk#readme",
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint"
}
},
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"@types/node": "^10.10.3",
"@types/whatwg-url": "^6.4.0",
"@types/ws": "^6.0.1",
"chai": "^4.1.2",
"husky": "^1.0.0-rc.15",
"mocha": "^5.2.0",
"nock": "^10.0.0",
"ts-mocha": "^2.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"js-sha256": "^0.9.0",
"whatwg-url": "^7.0.0",
"wolfy87-eventemitter": "^5.2.5",
"ws": "^6.0.0"
}
}