forked from OriginProtocol/origin-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.98 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
{
"name": "origin",
"version": "0.6.1",
"description": "",
"engines": {
"node": "9.11.1"
},
"main": "./dist/index.js",
"scripts": {
"test": "node scripts/test.js",
"test:contracts": "node scripts/test-contracts.js",
"test:js": "mocha --compilers js:babel-core/register --require babel-polyfill",
"build": "node scripts/build.js",
"format": "npx prettier --write test/*.js src/**.js contracts/test/**.js",
"prepare": "npm run build",
"install:dev": "npm install && npm link",
"start": "node scripts/build.js serve"
},
"files": [
"dist"
],
"prettier": {
"semi": false,
"tabWidth": 2
},
"repository": {
"type": "git",
"url": "https://github.com/OriginProtocol/origin-js"
},
"author": "Stan James <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "^6.5.0",
"babel-polyfill": "^6.26.0",
"bs58": "^4.0.1",
"cross-fetch": "^2.1.1",
"ethereumjs-util": "^5.2.0",
"form-data": "^2.3.2",
"map-cache": "^0.2.2",
"rlp": "^2.0.0",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"eth-gas-reporter": "^0.1.2",
"fetch-mock": "^6.3.0",
"flow-bin": "^0.71.0",
"ganache-core": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"ipfs": "^0.28.2",
"ipfs-api": "^20.2.1",
"mocha": "^5.1.1",
"mocha-loader": "^1.1.3",
"node-watch": "^0.5.8",
"prettier": "1.12.1",
"sinon": "^5.0.7",
"truffle": "^4.1.8",
"truffle-contract": "^3.0.5",
"truffle-hdwallet-provider": "0.0.5",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-node-externals": "^1.7.2"
}
}