-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "@lunie/cosmos-api",
"version": "0.2.5",
"description": "Cosmos API is a library for interacting with applications built on the Cosmos SDK.",
"main": "lib/cosmos.js",
"scripts": {
"test": "jest",
"lint": "eslint src/* --fix",
"build": "webpack",
"log": "simsala log",
"release": "git checkout develop & git pull & git push origin develop:release"
},
"keywords": [
"cosmos",
"sdk",
"blockchain"
],
"author": "Lunie International Software Systems Inc. <hello@lunie.io>",
"licenses": [
{
"license": "Apache-2.0"
}
],
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-core": "^7.0.0-0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.0.5",
"eslint": "^6.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^26.0.1",
"simsala": "^0.0.21",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"@babel/runtime": "^7.5.4",
"axios": "^0.19.0"
},
"jest": {
"transform": {
".*\\.js$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"node_modules"
],
"collectCoverage": true
}
}