-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "decentraland-eth",
"version": "0.0.0-development",
"description": "Common functionality between the different Decentraland projects",
"typings": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"docs": "npx typedoc --out out src/index.ts",
"lint:fix": "tslint --project tsconfig.json --fix",
"lint": "tslint --project tsconfig.json",
"init": "mkdir -p dist",
"trim-artifacts": "node ./scripts/contracts/index.js trim-artifacts --write",
"copy-contracts": "mkdir -p dist/contracts/artifacts && cp -r src/contracts/artifacts dist/contracts",
"contracts-manifest": "node ./scripts/contracts/index.js generate-manifest --write",
"contracts": "npm run trim-artifacts && npm run copy-contracts",
"clean": "(rm -r dist || true)",
"prebuild": "npm run clean && npm run lint && tsc -p scripts/tsconfig.json && npm run contracts",
"build": "tsc -p src/tsconfig.json",
"fastbuild": "npm run clean && tsc -p tsconfig.json",
"test": "npm run build && tsc -p specs/tsconfig.json && mocha specs/**/*.spec.js --exit",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg",
"cleanup-dev": "node ./scripts/prePublish.js && npm ddp && npm prune --production"
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/decentraland-eth.git"
},
"files": [
"dist"
],
"keywords": [
"common",
"modules",
"decentraland"
],
"author": "Decentraland",
"license": "ISC",
"dependencies": {
"@ledgerhq/hw-app-eth": "4.21.0",
"@ledgerhq/hw-transport-u2f": "4.21.0",
"@ledgerhq/web3-subprovider": "4.21.0",
"@types/bignumber.js": "^5.0.0",
"comma-separated-values": "^3.6.4",
"ethereumjs-util": "5.2.0",
"web3": "^0.20.7",
"web3-provider-engine": "^14.1.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"semi": false
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/glob": "^5.0.35",
"@types/mocha": "^5.0.0",
"@types/node": "^8.10.1",
"@types/websocket": "0.0.40",
"chai": "^4.2.0",
"commander": "^2.19.0",
"dcl-tslint-config-standard": "^1.1.0",
"eth-connect": "^0.3.2",
"ganache-cli": "^6.1.8",
"husky": "^0.14.3",
"isomorphic-fetch": "^2.2.1",
"mocha": "^4.0.1",
"prettier": "^1.8.2",
"rimraf": "^2.6.2",
"semantic-release": "^12.2.5",
"sinon": "^6.1.5",
"tslint": "^5.11.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.1.3",
"validate-commit-msg": "^2.14.0",
"websocket": "^1.0.28"
}
}