-
Notifications
You must be signed in to change notification settings - Fork 303
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "itowns2",
"version": "1.0.0",
"description": "A JS/WebGL framework for 3D geospatial data visualization",
"main": "dist/itowns2.js",
"scripts": {
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\"",
"test": "npm run lint && npm run build",
"build": "webpack -p",
"start": "webpack-dev-server -d --inline --hot",
"prepublish": "babel -d dist/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iTowns/itowns2.git"
},
"license": "(CECILL-B OR MIT)",
"bugs": {
"url": "https://github.com/iTowns/itowns2/issues"
},
"homepage": "https://itowns.github.io/",
"dependencies": {
"imports-loader": "^0.6.5",
"js-priority-queue": "^0.1.5",
"jszip": "^2.5.0",
"paralleljs": "^0.2.1",
"three": "^0.77.0",
"string_format": "^0.0.6",
"when": "^3.7.7",
"simd": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-runtime": "^6.5.0",
"eslint": "^2.5.3",
"eslint-loader": "^1.3.0",
"js-beautify": "^1.6.2",
"raw-loader": "^0.5.1",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}