This repository has been archived by the owner on Dec 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "pando-lib",
"version": "1.0.0",
"description": "",
"main": "lib/pando.js",
"scripts": {
"build": "webpack -p",
"dev": "webpack --watch",
"test":
"nyc mocha --timeout 15000 --require babel-core/register test/global.js",
"lint": "npm run lint:base && npm run lint:test",
"lint:base": "./node_modules/.bin/tslint --fix src/**/*.ts{,x}",
"lint:test": "./node_modules/.bin/eslint --fix test/**/*.js"
},
"keywords": ["vcs", "pando", "git", "ethereum", "aragon", "ipfs", "ipld"],
"repository": {
"type": "git",
"url": "git+https://github.com/wespr/pando.js"
},
"author": "Olivier Sarrouy <[email protected]>",
"license": "ISC",
"files": ["lib/"],
"devDependencies": {
"@0xproject/types": "^0.5.0",
"@types/node": "^9.6.22",
"async": "^2.6.1",
"awesome-typescript-loader": "^5.2.0",
"babel-eslint": "^8.2.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.1.0",
"nyc": "^11.6.0",
"ts-loader": "^4.4.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typechain": "^0.2.4",
"typescript": "^2.9.2",
"webpack": "^4.14.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@aragon/os": "^3.1.3",
"@pando/core": "file:../pando-core",
"cids": "^0.5.3",
"eth-ens-namehash": "^2.0.8",
"ethereum-regex": "^1.1.3",
"ipfs": "^0.29.3",
"ipld": "^0.17.2",
"ipld-pando": "file:../js-ipld-pando",
"js-sha3": "^0.7.0",
"js-yaml": "^3.11.0",
"jsonfile": "^4.0.0",
"klaw-sync": "^3.0.2",
"promisify-event": "^1.0.0",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"truffle-contract": "^3.0.6",
"web3": "^1.0.0-beta.33",
"web3-utils": "^1.0.0-beta.34"
}
}