-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "tangram-cartocss",
"version": "0.9.11",
"description": "Transform cartocss into a draw tangram object.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/cartodb/tangram-cartocss.git"
},
"dependencies": {
"carto": "github:cartodb/carto#master",
"tangram-reference": "~2.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"jshint": "^2.9.5",
"mocha": "^3.5.0",
"webpack": "^3.5.5"
},
"scripts": {
"build": "webpack",
"test": "mocha && npm run lint",
"test:watch": "mocha -w",
"lint": "$(npm bin)/jshint src/ test/"
},
"browserify": {
"transform": [["babelify", { "presets": ["es2015"] }]]
},
"keywords": [
"maps",
"graphics",
"rendering",
"visualization",
"WebGL",
"OpenStreetMap",
"cartocss",
"carto",
"yaml"
],
"author": {
"name": "CARTO",
"email": "[email protected]"
},
"contributors": [
{
"name": "Francisco López",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause"
}