-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "tmb.js",
"version": "0.3.0-SNAPSHOT",
"description": "TMB javascript library",
"main": "src/tmb.js",
"directories": {
"example": "examples"
},
"scripts": {
"build": "npm run keys && webpack --display-error-details",
"keys": "node tools/ensure_api_keys.js",
"test": "npm run keys && karma start karma.conf.js",
"start": "npm run keys && webpack-dev-server --https --inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geomatico/tmb.js.git"
},
"author": "Oscar Fonts; Micho Garcia",
"license": "MIT",
"bugs": {
"url": "https://github.com/TMB-Barcelona/tmb.js/issues"
},
"homepage": "https://github.com/TMB-Barcelona/tmb.js#readme",
"devDependencies": {
"http-server": "0.9.0",
"jasmine-core": "2.5.2",
"jsonfile": "2.4.0",
"karma": "1.4.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-read-json": "1.1.0",
"karma-webpack": "2.0.2",
"phantomjs-prebuilt": "2.1.14",
"prompt": "1.0.0",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.3"
},
"dependencies": {
"axios": "0.15.3",
"es6-promise": "4.0.5"
}
}