forked from OfficeDev/office-js-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.7 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
54
55
56
57
58
59
60
61
{
"name": "@microsoft/office-js-helpers",
"description": "A collection of helpers to simplify development of Office Add-ins & Microsoft Teams Tabs",
"version": "0.7.4",
"repository": {
"type": "git",
"url": "git+https://github.com/OfficeDev/office-js-helpers.git"
},
"scripts": {
"clean": "rimraf dist dts",
"lint": "tslint -c ./tslint.json ./src/**/*.ts",
"tsc": "tsc -p tsconfig.json && rimraf ./dist/**/*.spec.*",
"umdify": "node build/browserify.js",
"minify": "node build/minify.js",
"gendts": "node build/generate-dts.js",
"generate": "npm-run-all -s umdify minify -p gendts",
"build": "npm-run-all -s clean tsc generate",
"version": "npm run build",
"beta": "npm version prerelease && npm publish --tag beta"
},
"main": "./dist/index.js",
"jsnext:main": "./dist/index.js",
"typings": "./dist/office.helpers.d.ts",
"license": "MIT",
"files": [
"dist/",
"dts/"
],
"dependencies": {
"core-js": "2.4.1",
"crypto-js": "3.1.9-1",
"lodash": "4.17.4",
"rxjs": "^5.0.0"
},
"devDependencies": {
"@types/jquery": "2.0.41",
"@types/lodash": "4.14.57",
"@types/microsoftteams": "1.0.0",
"@types/office-js": "^0.0.42",
"browserify": "14.1.0",
"dts-builder": "1.1.0",
"npm-run-all": "4.0.2",
"rimraf": "2.6.1",
"tslint": "4.5.1",
"typescript": "2.2.1",
"uglify-js": "2.8.15"
},
"keywords": [
"Office Add-ins",
"Office JavaScript API",
"Authentication",
"OAuth",
"Storage",
"Helpers"
],
"author": "Microsoft",
"bugs": {
"url": "https://github.com/OfficeDev/office-js-helpers/issues"
},
"homepage": "https://github.com/OfficeDev/office-js-helpers#readme"
}