forked from ABAPlan/abaplan-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.6 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
{
"name": "abaplan-core",
"version": "0.1.0",
"description": "Abaplan core project",
"main": "index.js",
"scripts": {
"build-help": "echo Build and pack for production ':p' or development ':d'",
"build": "webpack --progress --config ./build/webpack.config.js",
"build:d": "npm run build -- -d",
"build:p": "npm run build -- -p",
"doc-help": "echo Generate the documentation",
"doc": "typedoc --out ./doc/ ./src/ --ignoreCompilerErrors",
"start-help": "echo Run a developpement server and watch for changes",
"start": "concurrently \"npm run build:d -- -w\" \"lite-server --baseDir=\"dist\"\" ",
"test-help": "echo Run the tests",
"test": "karma start ./test/karma.conf.js --single-run",
"tsc-help": "echo Transpile to js",
"tsc": "tsc",
"tsc:c-help": "echo Clear the transpiled files safely (remove only the js file that match ts files)",
"tsc:c": "gulp clear",
"tsc:w-help": "echo Transpile to js and watch for changes",
"tsc:w": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ABAPlan/abaplan-core.git"
},
"keywords": [
"abaplan",
"audiotactile",
"blind"
],
"files": [
"dist"
],
"author": "Joel Cavat",
"contributors": [
"Joel Cavat",
"Maxiume Burri <maxime.burri@gmail.com>",
"Pierre Johner",
"Robin Chappatte <robin.chappatte@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ABAPlan/abaplan-core/issues"
},
"homepage": "https://github.com/ABAPlan/abaplan-core#readme",
"dependencies": {
"@angular/common": "^5.2.10",
"@angular/compiler": "^5.2.10",
"@angular/core": "^5.2.10",
"@angular/forms": "^5.2.10",
"@angular/http": "^5.2.10",
"@angular/platform-browser": "^5.2.10",
"@angular/platform-browser-dynamic": "^5.2.10",
"@angular/router": "^5.2.10",
"@angular/upgrade": "^5.2.10",
"@types/arcgis-js-api": "^3.23.0",
"@types/file-saver": "^1.3.0",
"@types/google-maps": "^3.2.0",
"@types/jasmine": "^2.8.6",
"@types/lodash": "^4.14.107",
"@types/node": "^9.6.5",
"ajv": "^6.4.0",
"angular-in-memory-web-api": "^0.5.4",
"angular2-hotkeys": "^2.0.4",
"angular2-template-loader": "^0.6.0",
"artyom.js": "^1.0.6",
"braille": "^1.1.0",
"concurrently": "^3.5.1",
"copy-webpack-plugin": "^4.5.1",
"core-js": "^2.5.5",
"dojo-typings": "^1.11.9",
"esri-system-js": "^1.0.0-beta.0",
"file-loader": "^1.1.11",
"file-saver": "^1.3.8",
"fork-ts-checker-webpack-plugin": "^0.4.1",
"geojson": "^0.5.0",
"google-maps": "^3.2.1",
"gulp": "^3.9.1",
"gulp-clean-compiled-typescript": "^1.2.0",
"html-webpack-include-assets-plugin": "^1.0.4",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-dojo": "0.0.1",
"karma-htmlfile-reporter": "^0.3.4",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"lite-server": "^2.2.2",
"lodash": "^4.17.5",
"ng2-translate": "^5.0.0",
"ngx-bootstrap": "^2.0.4",
"popper.js": "^1.14.3",
"purs-loader": "^3.1.4",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^5.5.10",
"tokml": "^0.4.0",
"ts-helpers": "^1.1.2",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.8.1",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"zone.js": "^0.8.26"
}
}