UNPKG

1.74 kBJSONView Raw
1{
2 "name": "dcl-crypto",
3 "version": "1.1.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 "typescript": "^3.7.5"
46 },
47 "devDependencies": {
48 "@types/mocha": "^5.2.7",
49 "chai": "^4.2.0",
50 "chai-as-promised": "^7.1.1",
51 "dcl-tslint-config-standard": "^1.0.1",
52 "husky": "^1.0.1",
53 "mocha": "^5.2.0",
54 "nyc": "^14.1.1",
55 "prettier": "^1.10.2",
56 "semantic-release": "^15.9.16",
57 "ts-node": "^7.0.1",
58 "tslint": "^5.7.0",
59 "tslint-config-prettier": "^1.10.0",
60 "tslint-language-service": "^0.9.9",
61 "tslint-plugin-prettier": "^1.3.0",
62 "validate-commit-msg": "^2.14.0"
63 },
64 "prettier": {
65 "printWidth": 80,
66 "singleQuote": true,
67 "semi": false
68 }
69}