-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "mx-check-deprecations",
"version": "2.0.1",
"description": "Check deprecations (Mendix 6) in your Mendix widgets",
"main": "cli.js",
"bin": {
"mx-check-deprecations": "./bin/mx-check-deprecations"
},
"scripts": {
"start": "babel-node src/index.js",
"lint": "eslint src/*",
"test": "npm run lint"
},
"keywords": [
"mendix",
"deprecations"
],
"repository": {
"type": "git",
"url": "https://github.com/mendix/mx-check-deprecations"
},
"bugs": {
"url": "https://github.com/mendix/mx-check-deprecations"
},
"deprecation_url": "https://raw.githubusercontent.com/mendix/mx-check-deprecations/master/src/deprecations.js",
"readmeFilename": "README.md",
"author": {
"name": "J.W. Lagendijk",
"email": "jelte.lagendijk@mendix.com"
},
"license": "MIT",
"dependencies": {
"adm-zip": "^0.4.7",
"babel-cli": "^6",
"babel-plugin-module-resolver": "^2",
"babel-preset-es2015": "^6",
"babel-preset-stage-0": "^6",
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"diff": "^3.2.0",
"lodash": "4.6.0",
"optimist": "^0.6.1",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"update-notifier": "0.6.1",
"xlsx": "^0.8.1",
"xml2js": "^0.4.17",
"yargs": "^6.6.0"
},
"devDependencies": {
"eslint": "^3",
"eslint-plugin-import": "^2",
"eslint-import-resolver-babel-module": "^2",
"babel-eslint": "^7"
}
}