-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "office-js-snippets",
"version": "1.0.0",
"description": "A collection of samples using the Office JavaScript API",
"main": "config/compile.js",
"engines": {
"node": ">=6.10.0"
},
"scripts": {
"start": "npm run tsc && npm run build && npm run lint",
"tsc": "tsc -p tsconfig.json",
"build": "node config/build.js",
"lint": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OfficeDev/office-js-snippets.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/OfficeDev/office-js-snippets/issues"
},
"homepage": "https://github.com/OfficeDev/office-js-snippets#readme",
"dependencies": {
"chalk": "1.1.3",
"escape-string-regexp": "^2.0.0",
"exceljs": "^4.3.0",
"fs-extra": "3.0.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"node-status": "^1.0.0",
"rimraf": "^3.0.0",
"shelljs": "^0.8.5",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/chalk": "0.4.31",
"@types/fs-extra": "3.0.1",
"@types/js-yaml": "^3.12.0",
"@types/lodash": "^4.14.175",
"@types/node": "^11.10.5",
"@types/shelljs": "^0.8.3",
"tslint": "^6.1.0",
"typescript": "^3.3.3333"
}
}