This repository was archived by the owner on Dec 8, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.76 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.76 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "parity",
"version": "0.2.8",
"description": "The Parity Promise-based API library for interfacing with Ethereum over RPC",
"main": "index.js",
"scripts": {
"lint": "yarn run lint:3rdparty && yarn run lint:abi && yarn run lint:api && yarn run lint:jsonrpc && yarn run lint:wordlist",
"lint:3rdparty": "eslint --ignore-path .gitignore ./src/3rdparty/",
"lint:abi": "eslint --ignore-path .gitignore ./src/abi/",
"lint:api": "eslint --ignore-path .gitignore ./src/api/",
"lint:jsonrpc": "eslint --ignore-path .gitignore ./src/jsonrpc/",
"lint:wordlist": "eslint --ignore-path .gitignore ./src/wordlist/",
"prepublish": "node_modules/babel-cli/bin/babel.js src --out-dir ./ && npm run prepublish:json",
"prepublish:json": "copyfiles -f 'src/wordlist/wordlist.json' wordlist",
"test": "yarn run test:3rdparty && yarn run test:abi && yarn run test:api && yarn run test:jsonrpc && yarn run test:wordlist",
"test:3rdparty": "NODE_ENV=test mocha --require babel-core.js 'src/3rdparty/**/*.spec.js'",
"test:abi": "NODE_ENV=test mocha --require babel-core.js 'src/abi/**/*.spec.js'",
"test:api": "NODE_ENV=test mocha --require babel-core.js 'src/api/**/*.spec.js'",
"test:jsonrpc": "NODE_ENV=test mocha --require babel-core.js 'src/jsonrpc/**/*.spec.js'",
"test:wordlist": "NODE_ENV=test mocha --require babel-core.js 'src/wordlist/**/*.spec.js'"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.0.1",
"chai-as-promised": "^6.0.0",
"chai-enzyme": "^0.7.1",
"enzyme": "^2.8.2",
"eslint": "3.19.0",
"eslint-config-react-app": "^1.0.4",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-react": "^7.0.1",
"fetch-mock": "^5.11.0",
"install": "^0.10.1",
"mocha": "^3.4.2",
"mock-socket": "^6.1.0",
"nock": "^9.0.13",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0",
"utf8": "^2.1.2"
},
"dependencies": {
"babel-plugin-webpack-alias": "^2.1.2",
"bignumber.js": "3.0.1",
"blockies": "0.0.2",
"ejs-loader": "^0.3.0",
"es6-error": "4.0.0",
"es6-promise": "^4.1.0",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"ethereumjs-tx": "1.2.5",
"eventemitter3": "2.0.2",
"isomorphic-fetch": "^2.2.1",
"js-sha3": "0.5.5",
"keythereum": "0.4.6",
"mocha-wrap": "^2.1.1",
"node-fetch": "1.6.3",
"secp256k1": "3.2.5",
"store": "^2.0.4",
"u2f-api": "^0.0.9",
"u2f-api-polyfill": "0.4.3"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/paritytech/parity.js.git"
},
"keywords": [
"parity",
"module",
"ethereum",
"wrapper",
"eth",
"rpc"
],
"maintainers": [],
"contributors": [],
"author": "Parity Technologies <admin@parity.io>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/paritytech/parity.js/issues"
},
"homepage": "https://github.com/paritytech/parity.js#readme",
"eslintConfig": {
"extends": [
"react-app"
],
"parser": "babel-eslint",
"env": {
"browser": true,
"mocha": true,
"node": true
},
"globals": {
"expect": true,
"FileReader": true
},
"rules": {
"no-unused-expressions": 0
}
}
}