-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 943 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 943 Bytes
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
{
"name": "seer",
"version": "0.2.5",
"description": "A customizable devtool solution",
"main": "dist",
"files": [
"index.js",
"dist"
],
"scripts": {
"build": "rm -rf dist && mkdir dist && babel index.js -o dist/index.js",
"docs": "cat header.md > README.md && jsdoc2md index.js >> README.md && sed -i '' '30,1000s/##/###/g' README.md"
},
"author": "Balthazar Gronon <bgronon@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/uber-web/seer.git"
},
"bugs": {
"url": "https://github.com/uber-web/seer/issues"
},
"homepage": "https://github.com/uber-web/seer",
"keywords": [
"uber",
"devtools",
"debug",
"deck.gl"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-module-resolver": "^2.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jsdoc-to-markdown": "^3.0.0"
}
}