-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 3.91 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
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
113
114
115
116
117
118
119
120
{
"name": "netlicensing-client",
"version": "1.2.37",
"description": "JavaScript Wrapper for Labs64 NetLicensing RESTful API",
"keywords": [
"labs64",
"netlicensing",
"licensing",
"licensing-as-a-service",
"license",
"license-management",
"software-license",
"client",
"restful",
"restful-api",
"javascript",
"wrapper",
"api",
"client"
],
"license": "Apache-2.0",
"author": "Labs64 GmbH",
"homepage": "https://netlicensing.io",
"repository": {
"type": "git",
"url": "https://github.com/Labs64/NetLicensingClient-javascript"
},
"bugs": {
"url": "https://github.com/Labs64/NetLicensingClient-javascript/issues"
},
"contributors": [
{
"name": "Ready Brown",
"email": "[email protected]",
"url": "https://github.com/r-brown"
},
{
"name": "Viacheslav Rudkovskiy",
"email": "[email protected]",
"url": "https://github.com/v-rudkovskiy"
},
{
"name": "Andrei Yushkevich",
"email": "[email protected]",
"url": "https://github.com/yushkevich"
}
],
"main": "dist/netlicensing-client.js",
"files": [
"dist"
],
"scripts": {
"build": "node build/build.cjs",
"release": "npm run build && npm run test",
"dev": "webpack --progress --watch --config build/webpack.dev.conf.cjs",
"test": "karma start test/karma.conf.js --single-run",
"test-mocha": "webpack --config build/webpack.test.conf.cjs",
"test-for-travis": "karma start test/karma.conf.js --single-run --browsers Firefox",
"lint": "eslint --ext .js,.vue src test"
},
"dependencies": {
"axios": "^1.6.0",
"btoa": "^1.2.1",
"es6-promise": "^4.2.8"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.8",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-function-sent": "^7.16.7",
"@babel/plugin-proposal-json-strings": "^7.16.7",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.8",
"axios-mock-adapter": "^1.20.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-webpack-plugin": "^3.1.1",
"faker": "^5.5.3",
"is-docker": "^2.2.1",
"jasmine": "^4.0.2",
"jasmine-core": "^4.0.1",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.33",
"karma-webpack": "^5.0.0",
"lodash": "^4.17.21",
"ora": "^5.4.1",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.1.1",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">= 14.0.0",
"npm": ">= 8.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}