forked from decentraland/decentraland-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.67 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
79
80
81
82
{
"name": "decentraland-commons",
"version": "0.0.0-development",
"description": "Common functionality between the different Decentraland projects",
"main": "./dist/index.js",
"browser": {
"./src/index.js": "./src/browser.js",
"./dist/index.js": "./dist/browser.js"
},
"scripts": {
"docs": "npx jsdoc -c conf.json -r src/**/*.js",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"init": "mkdir -p dist",
"trim-artifacts": "./scripts/contracts/index.js trim-artifacts --write",
"copy-contracts": "mkdir -p dist/contracts/artifacts && cp -r src/contracts/artifacts dist/contracts",
"contracts-manifest": "./scripts/contracts/index.js generate-manifest --write",
"contracts": "npm run trim-artifacts && npm run copy-contracts",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run lint && npm run contracts && npm run test && npm run init",
"build": "babel ./src -d ./dist --ignore specs",
"fastbuild": "npm run clean && npm run init && babel ./src -d ./dist --ignore specs",
"test": "npx mocha -r babel-register -r specs/spec_utils.js specs/*.spec.js",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/commons.git"
},
"files": [
"dist"
],
"keywords": [
"common",
"modules",
"decentraland"
],
"author": "Decentraland",
"license": "ISC",
"dependencies": {
"@ledgerhq/hw-app-eth": "^2.2.0",
"@ledgerhq/hw-transport-u2f": "^2.2.0",
"comma-separated-values": "^3.6.4",
"commander": "^2.13.0",
"dotenv": "^4.0.0",
"ethereumjs-util": "5.1.2",
"inquirer": "^5.0.0",
"ledger-wallet-provider": "^2.0.0-beta.2",
"mailchimp-api-v3": "^1.7.1",
"mongodb": "^2.2.31",
"nodemailer": "^4.1.3",
"pg": "^7.3.0",
"rollbar": "^2.3.6",
"tunnel-ssh": "^4.1.3",
"validate-commit-msg": "^2.14.0",
"web3": "^0.20.6",
"web3-provider-engine": "https://github.com/decentraland/provider-engine.git#releases"
},
"peerDependencies": {
"babel-polyfill": "^6.26.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"npx": "^9.7.1",
"prettier": "^1.8.2",
"semantic-release": "^12.2.5"
}
}