-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.53 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": "extensions-api-sdk",
"version": "0.1.0",
"description": "Sample code and documentation for the Tableau Extensions API.",
"scripts": {
"build": "npm run lint && webpack --config webpack.config.js --display-error-details",
"start": "node node_modules/http-server/bin/http-server -p 8765",
"start-sandbox": "npx tabextsandbox --config sandbox-config.json",
"lint": "npm run jslint && npm run tslint",
"jslint": "semistandard ./Samples/*/*.js",
"tslint": "./node_modules/.bin/tslint --config ./tslint.json ./Samples-Typescript/*/*.ts",
"dev": "concurrently --kill-others \"webpack --watch\" \"npm:start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableau/extensions-api.git"
},
"author": "tableau",
"license": "MIT",
"dependencies": {
"http-server": "^0.11.1"
},
"devDependencies": {
"@tableau/extensions-api-types": "1.3.1",
"@tableau/tabextsandbox": "^1.0.1",
"@types/bootstrap": "^4.3.1",
"@types/datatables.net": "^1.10.18",
"@types/datatables.net-scroller": "^1.4.0",
"@types/jquery": "^3.3.29",
"concurrently": "^4.1.0",
"semistandard": "^11.0.0",
"ts-loader": "^5.4.5",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"semistandard": {
"env": {
"jquery": true,
"browser": true,
"tableau": true
},
"globals": [
"tableau"
],
"ignore": [
"/lib",
"/docs",
"tableau.extensions.*.latest.js"
]
}
}