forked from tableau/extensions-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 946 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 946 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
38
39
40
41
42
{
"name": "extensions-api-sdk",
"version": "0.1.0",
"description": "Sample code and documentation for the Tableau Extensions API.",
"scripts": {
"build": "tsc",
"start": "node node_modules/http-server/bin/http-server -p 8765",
"lint": "semistandard",
"dev": "concurrently --kill-others \"tsc --watch\" \"npm:start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableau/extensions-api.git"
},
"author": "tableau",
"license": "MIT",
"dependencies": {
"http-server": "^0.9.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jquery": "^3.3.29",
"concurrently": "^4.1.0",
"semistandard": "^11.0.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"semistandard": {
"env": {
"jquery": true,
"browser": true,
"tableau": true
},
"globals": [
"tableau"
],
"ignore": [
"/lib",
"/docs"
]
}
}