-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
75
76
77
78
{
"name": "@mobius-network/mobius-client-js",
"version": "0.5.0",
"description": "Mobius DApp Store API",
"keywords": [
"stellar",
"mobius",
"mobi",
"api",
"sdk"
],
"homepage": "https://github.com/mobius-network/mobius-client-js",
"bugs": {
"url": "https://github.com/mobius-network/mobius-client-js/issues"
},
"license": "MIT",
"author": "Emil Kashkevich <[email protected]>",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mobius-network/mobius-client-js"
},
"scripts": {
"build:cjs:development": "babel src -w -d lib --ignore test.js",
"build:cjs:production": "babel src -d lib --ignore test.js",
"build:umd:development": "webpack --config config/webpack.development.js",
"build:umd:production": "webpack --config config/webpack.production.js",
"build": "yarn run build:cjs:production & yarn run build:umd:production",
"development": "yarn run build:cjs:development & yarn run build:umd:development",
"example:auth": "yarn run build && node examples/auth/index.js",
"lint": "eslint --quiet . --ext .js",
"precommit": "lint-staged",
"prepack": "yarn run build",
"test": "jest --config test/jest.config.js"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"jsonwebtoken": "^8.3.0",
"stellar-sdk": "^0.8.0"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"ejs": "^2.5.8",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^2.6.0",
"express": "^4.16.3",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"prettier": "^1.12.1",
"timekeeper": "^2.1.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.29.6",
"webpack-cli": "^2.0.14"
},
"engines": {
"node": ">=4 <=11"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
}
}