UNPKG

1.88 kBJSONView Raw
1{
2 "name": "dcl-crypto",
3 "version": "1.6.0",
4 "description": "Crypto auth for Decentraland",
5 "main": "dist/index.js",
6 "typings": "./dist/index.d.ts",
7 "scripts": {
8 "prebuild": "rm -rf dist",
9 "build": "tsc --project tsconfig-build.json",
10 "prewatch": "rm -rf dist",
11 "watch": "tsc --watch --project tsconfig-build.json",
12 "test": "nyc mocha --require ts-node/register test/*.spec.ts --exit",
13 "semantic-release": "semantic-release",
14 "commit-msg": "validate-commit-msg"
15 },
16 "nyc": {
17 "all": true,
18 "include": [
19 "src"
20 ],
21 "extension": [
22 ".ts"
23 ],
24 "reporter": [
25 "text-summary"
26 ],
27 "sourceMap": true,
28 "instrument": true
29 },
30 "repository": {
31 "type": "git",
32 "url": "git+https://github.com/decentraland/decentraland-crypto.git"
33 },
34 "keywords": [
35 "decentraland"
36 ],
37 "author": "Decentraland",
38 "license": "Apache-2.0",
39 "bugs": {
40 "url": "https://github.com/decentraland/decentraland-crypto/issues"
41 },
42 "homepage": "https://github.com/decentraland/decentraland-crypto#readme",
43 "dependencies": {
44 "eth-crypto": "^1.5.1",
45 "web3x": "^4.0.6"
46 },
47 "devDependencies": {
48 "@types/chai": "^4.2.8",
49 "@types/mocha": "^5.2.7",
50 "@types/sinon": "^7.5.1",
51 "chai": "^4.2.0",
52 "chai-as-promised": "^7.1.1",
53 "dcl-tslint-config-standard": "^1.0.1",
54 "husky": "^1.0.1",
55 "mocha": "^5.2.0",
56 "nyc": "^14.1.1",
57 "prettier": "^1.10.2",
58 "semantic-release": "^15.9.16",
59 "sinon": "^8.1.1",
60 "ts-node": "^7.0.1",
61 "tslint": "^5.7.0",
62 "tslint-config-prettier": "^1.10.0",
63 "tslint-language-service": "^0.9.9",
64 "tslint-plugin-prettier": "^1.3.0",
65 "typescript": "^3.7.5",
66 "validate-commit-msg": "^2.14.0",
67 "web3x-codegen": "^4.0.6"
68 },
69 "prettier": {
70 "printWidth": 80,
71 "singleQuote": true,
72 "semi": false
73 }
74}