forked from mendix/google-maps
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.82 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.82 KB
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
{
"name": "google-maps",
"widgetName": "GoogleMaps",
"version": "1.5.1",
"description": "Show locations on Google Maps",
"copyright": "Mendix BV",
"scripts": {
"start": "nodemon --watch webpack.config.js --watch Gruntfile.js --exec \"grunt",
"emit": "tsc",
"pretest": "tsc && npm run lint && npm run build",
"test": "npm run test:unit && npm run test:conditional",
"test:conditional": "node ./node_modules/mendix-widget-build-script/dist/CheckPullRequestFromFork.js && echo 'Skip tests on forked pull request' || npm run deployAndTest",
"test:dev": "karma start",
"test:unit": "karma start --single-run --codeCoverage && node tests/remap.js",
"test:e2e": "tsc -p ./tests/e2e/tsconfig.json && wdio ./tests/e2e/wdio.conf.js",
"test:e2e:dev": "tsc -p ./tests/e2e/tsconfig.json && set DEBUG=true&& wdio ./tests/e2e/wdio.conf.js",
"lint": "tslint -c tslint.json '**/*.ts' --exclude '**/node_modules/**'",
"lint:fix": "npm run lint -- --fix",
"deploy": " npm run updateProject && npm run deployApp",
"build": "grunt release",
"updateProject": "node ./node_modules/mendix-widget-build-script/dist/UpdateMxProject.js",
"deployApp": "node ./node_modules/mendix-widget-build-script/dist/DeployMxApp.js",
"deployAndTest": "npm run deploy && npm run test:e2e"
},
"pre-commit": [
"emit",
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/mendixlabs/google-maps"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mendixlabs/google-maps/issues"
},
"devDependencies": {
"@types/big.js": "^4.0.2",
"@types/classnames": "^2.2.0",
"@types/core-js": "^0.9.46",
"@types/enzyme": "^3.1.8",
"@types/enzyme-adapter-react-16": "^1.0.1",
"@types/googlemaps": "^3.30.5",
"@types/jasmine": "^2.8.6",
"@types/karma": "^1.7.3",
"@types/react": "^16.0.36",
"@types/react-dom": "^16.0.3",
"check-dependencies": "^1.0.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.1",
"core-js": "^2.5.3",
"css-loader": "^0.28.9",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"grunt": "^1.0.2",
"grunt-check-dependencies": "^1.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.4.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-file-append": "0.0.7",
"grunt-newer": "^1.1.1",
"grunt-webpack": "^3.0.2",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine": "^3.0.0",
"json-loader": "^0.5.4",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^3.0.12",
"karma-webpack": "^2.0.9",
"mendix-client": "^7.6.5",
"mendix-widget-build-script": "^1.0.0-rc2",
"nodemon": "^1.14.12",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"remap-istanbul": "^0.10.1",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.1",
"ts-loader": "^3.5.0",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.5.3",
"url-loader": "^0.6.2",
"wdio-dot-reporter": "0.0.9",
"wdio-jasmine-framework": "^0.3.2",
"wdio-selenium-standalone-service": "0.0.9",
"wdio-spec-reporter": "^0.1.3",
"webdriverio": "^4.10.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"@types/webdriverio": "^4.8.8",
"classnames": "^2.2.5",
"google-map-react": "^0.29.0",
"prop-types": "^15.6.0"
}
}