-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
143 lines (143 loc) · 4.03 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "tangram-play",
"productName": "Tangram Play",
"version": "0.8.1",
"description": "GUI editor for Tangram",
"main": "index.js",
"private": true,
"scripts": {
"start": "gulp serve",
"test": "npm run lint --silent && npm run karma --silent",
"lint": "npm run lint-js --silent && npm run lint-css --silent",
"lint-js": "eslint *.js src/ test/ --ext .js,.jsx --quiet",
"lint-css": "stylelint src/css/*.css",
"prekarma": "node node_modules/phantomjs-prebuilt/install.js",
"karma": "./node_modules/karma/bin/karma start",
"postinstall": "gulp build",
"build": "gulp build",
"examples": "npm run examples:scenes && npm run examples:thumbnails",
"examples:scenes": "node meta/example-scenes/cache-scenes.js",
"examples:thumbnails": "node meta/example-scenes/cache-thumbnails.js",
"app": "electron ./electron.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tangrams/tangram-play.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tangrams/tangram-play/issues"
},
"homepage": "https://github.com/tangrams/tangram-play",
"contributors": [
{
"name": "Patricio Gonzalez Vivo",
"email": "patricio@mapzen.com"
},
{
"name": "Lou Huang",
"email": "lou@mapzen.com"
},
{
"name": "Brett Camper",
"email": "brett@mapzen.com"
},
{
"name": "Irene Alvarado",
"email": "irene@mapzen.com"
}
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"devDependencies": {
"autoprefixer": "7.1.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babelify": "7.3.0",
"brfs": "1.4.3",
"browser-sync": "2.18.12",
"browserify": "14.4.0",
"browserify-incremental": "3.1.1",
"browserify-shim": "3.8.14",
"chai": "3.5",
"chai-as-promised": "6.0.0",
"csswring": "6.0.0",
"enzyme": "2.8.2",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.1.0",
"gulp-babel": "6.1.2",
"gulp-notify": "3.0.0",
"gulp-postcss": "7.0.0",
"gulp-sourcemaps": "2.6.0",
"gulp-tap": "1.0.1",
"gulp-uglify": "3.0.0",
"gulp-util": "3.0.8",
"karma": "1.7.0",
"karma-browserify": "5.1.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.3",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon": "1.0.5",
"loose-envify": "1.3.1",
"mocha": "3.4.2",
"phantomjs-prebuilt": "2.1.14",
"postcss": "^6.0.0",
"postcss-color-hex-alpha": "3.0.0",
"postcss-custom-properties": "6.0.1",
"postcss-import": "10.0.0",
"postcss-nested": "2.0.2",
"postcss-reporter": "4.0.0",
"react-addons-perf": "15.4.2",
"react-test-renderer": "15.6.1",
"sinon": "2.3.5",
"stylelint": "7.11.1",
"stylelint-config-standard": "16.0.0",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"watchify": "3.11"
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-polyfill": "6.23.0",
"clipboard": "1.7.1",
"codemirror": "5.26.0",
"file-saver": "1.3.3",
"gulp": "4.0.0",
"jszip": "3.1.3",
"leaflet": "1.4.0",
"localforage": "1.5.0",
"lodash": "4.17.4",
"prop-types": "15.5.10",
"raven-js": "3.16.0",
"react": "15.6.1",
"react-addons-test-utils": "15.6.0",
"react-autosuggest": "9.2.0",
"react-bootstrap": "0.31.0",
"react-color": "2.13.0",
"react-dom": "15.6.1",
"react-draggable": "2.2.6",
"react-redux": "5.0.5",
"redux": "3.7.0",
"three": "0.86.0",
"tinycolor2": "1.4.1",
"url-search-params-polyfill": "1.3.0",
"whatwg-fetch": "2.0.3",
"yaml-ast-parser": "0.0.33"
},
"optionalDependencies": {
"electron": "1.6.11",
"gm": "1.23.0",
"imagemin": "5.3.1",
"imagemin-gifsicle": "5.1.0",
"imagemin-pngquant": "5.0.1"
},
"browserify-shim": {
"tangram": "global:Tangram"
}
}