-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.01 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
{
"description": "",
"author": "David Longman",
"license": "MIT",
"scripts": {
"package": "del *.vsix && tfx extension create --manifest-globs vss-extension.json --rev-version",
"prebuild": "if exist .\\dist\\ rmdir /s /q .\\dist\\",
"build": "tsc -p .",
"postbuild": "npm run test && npm run package",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha -r ts-node/register src/tests/**/*.spec.ts",
"marketplace-publish": "tfx extension publish --manifest-globs vss-extension.json --share-with dlongman.visualstudio.com --token aivnlwaizra3ybrkfxixdos3yw5k4ftcsln34lssn272elixrapa"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"mocha": "^4.0.1",
"ts-node": "^3.3.0",
"typescript": "^2.3.4"
},
"dependencies": {
"@types/google.visualization": "0.0.40",
"@types/q": "0.0.32",
"@types/requirejs": "^2.1.31",
"vss-web-extension-sdk": "1.110.0"
}
}