-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"scripts": {
"build": "npm run lint && npm run clean && npm run webpack",
"build:dev": "npm run lint && npm run clean && npm run webpack && npm run package:dev",
"webpack": "webpack --progress --colors --config webpack.config.js --output-path ./dist -p",
"postbuild": "npm run package",
"package": "tfx extension create",
"package:dev": "tfx extension create --overrides-file vss-extension.dev.json",
"publish": "tfx extension publish",
"gallery-publish": "tfx extension publish",
"clean": "rimraf ./dist && rimraf ./*.vsix",
"lint": "tslint -c tslint.json 'src/*.ts'"
},
"devDependencies": {
"cpx": "^1.5.0",
"rimraf": "^2.6.1",
"tfx-cli": "^0.6.3",
"ts-loader": "^5.3.0",
"tslint": "^5.11.0",
"tslint-loader": "^3.5.4",
"typescript": "^2.9.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@types/jquery": "^2.0.51",
"@types/q": "0.0.32",
"moment": "^2.22.2",
"office-ui-fabric-js": "^1.5.0",
"vss-web-extension-sdk": "5.141.0"
},
"name": "wiprint",
"private": true,
"version": "0.0.0"
}