-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "aivia",
"version": "1.11.6",
"description": "JavaScript SDK for AIVIA protocol",
"main": "./src/index.js",
"dependencies": {
"ethereumjs-tx": "^1.3.7",
"is_js": "^0.9.0",
"web3": "1.0.0-beta.36"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-preset-minify": "^0.5.0",
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"generate-export-aliases": "^1.1.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.14.3",
"typedarray-to-buffer": "^3.1.5"
},
"scripts": {
"test": "mocha ./test/index.js --timeout=13000",
"init": "MODE=dev node ./init.js",
"build": "babel src -d dist",
"prepublish": "generate-export-aliases",
"docs": "node ./docs.js",
"coverage": "nyc mocha ./test/index.js --timeout=13000"
},
"config": {
"exportAliases": {
"sdk": "./dist"
}
},
"license": "MIT"
}