forked from OfficeDev/office-addin-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.58 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
62
{
"name": "office-addin-validator",
"version": "1.0.5",
"description": "Tool to help validate Microsoft Office Add-in manifest files.",
"repository": {
"type": "git",
"url": "https://github.com/OfficeDev/office-addin-validator"
},
"scripts": {
"tsc": "tsc -p tsconfig.json",
"tsc-watch": "tsc -p tsconfig.json -w",
"test": "mocha -r ts-node/register app/test/**.js --timeout 10000 -R spec",
"build": "rimraf app && concurrently \"npm run tsc\"",
"start": "rimraf app && concurrently \"npm run tsc-watch\""
},
"engines": {
"node": ">6.9.0"
},
"homepage": "https://github.com/officedev/office-addin-validator",
"license": "MIT",
"bin": {
"validate-office-addin": "./app/index.js"
},
"author": "OfficeDev",
"main": "./app/util.js",
"keywords": [
"office",
"validation",
"manifest-validation",
"manifest",
"office-add-in",
"add-in",
"outlook",
"excel",
"word",
"powerpoint",
"onenote",
"project"
],
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"request": "^2.81.0",
"request-promise": "^4.2.0"
},
"devDependencies": {
"@types/applicationinsights": "^0.15.33",
"@types/chai": "^3.4.35",
"@types/chai-as-promised": "^0.0.30",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.3.31",
"@types/mocha": "^2.2.40",
"@types/request-promise": "^4.1.33",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"concurrently": "^3.4.0",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"ts-node": "^3.0.2",
"typescript": "^2.2.2"
}
}