-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"contributors": [
"Thierry Bugier <[email protected]>",
"Gianfranco Manganiello <[email protected]>",
"Alexander Salas Bastidas <[email protected]>"
],
"name": "@teclib/glpi",
"description": "API client for GLPI",
"version": "0.1.0",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/glpi-project/node-module-glpi.git"
},
"main": "./lib/GlpiRestClient",
"keywords": [
"GLPI",
"rest",
"xmlrpc",
"api",
"client"
],
"bin": {
"glpi-api": "./bin/glpi-api"
},
"dependencies": {
},
"engines": {
"node": "*"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"mocha-eslint": "^5.0.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.28.1",
"webpack-cli": "^3.1.2"
},
"scripts": {
"test": "mocha",
"build": "webpack",
"dev": "webpack --watch"
}
}