-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.81 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
{
"name": "mkm-api2",
"version": "0.1.0",
"description": "Another js library for accessing MKM api",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/friscoMad/mkm-api2"
},
"homepage": "https://github.com/friscoMad/mkm-api2#readme",
"scripts": {
"build": "cross-env rimraf ./dist && cross-env NODE_ENV=production webpack",
"doc": "cross-var rimraf ./docs/$npm_package_version && cross-var jsdoc -c .jsdoc.json -d ./docs/$npm_package_version/",
"doc:latest": "rimraf ./docs/latest && jsdoc -c .jsdoc.json -d ./docs/latest/",
"doc:open": "npm run doc && cross-var open docs/$npm_package_version/index.html",
"lint": "eslint \"src/**\"",
"lint:config": "eslint --print-config .eslintrc.json",
"start": "cross-env NODE_ENV=development webpack-dev-server --open",
"test": "jest --config jest.config.json",
"test:watch": "npm run test -- --watchAll",
"test:open": "npm run test && open coverage/lcov-report/index.html",
"test:coveralls": "npm run test -- --coverageReporters=text-lcov | coveralls",
"test:live": "cross-env LIVE_TEST=true npm run test",
"preversion": "npm run lint && npm run test",
"version": "npm run build && npm run doc && npm run doc:latest",
"postversion": "git add docs/ && cross-var git commit -am \"Documentation $npm_package_version\" && git push --follow-tags"
},
"dependencies": {
"axios": "^0.18.0",
"create-hmac": "^1.1.7",
"randombytes": "^2.0.6",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cross-var": "^1.1.0",
"css-loader": "^2.1.0",
"dotenv": "^6.2.0",
"dotenv-safe": "^6.1.0",
"eslint": "^5.14.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-nock": "^0.1.7",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mini-css-extract-plugin": "^0.5.0",
"nock": "^10.0.6",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.4",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}