-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"author": "Dan Appello",
"description": "An example monorepo with a focus on serverless technology.",
"engine": "node 8.11.3",
"keywords": [],
"name": "example-monorepo",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"combine:coverage": "istanbul-combine -d .test-results/coverage -r cobertura -r html packages/**/.test-results/coverage/coverage-final.json",
"combine:junit": "node ./scripts/combine-junit.js",
"funcpack": "lerna run funcpack",
"lint": "lerna run lint",
"process:coverage": "node ./scripts/process-coverage.js",
"test": "lerna run test",
"test:vsts": "lerna run test:vsts"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/chance": "^0.7.35",
"@types/mocha": "^2.2.44",
"@types/nock": "^9.1.0",
"@types/node": "^8.0.58",
"@types/sinon": "^4.1.3",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"chance": "^1.0.6",
"glob": "^7.1.3",
"inline-css": "^2.4.0",
"istanbul-combine": "^0.3.0",
"lerna": "3.4.0",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi-reporters": "^1.1.7",
"nock": "^9.0.13",
"sinon": "^4.2.2",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.6.0",
"tslint": "^5.8.0",
"tslint-microsoft-contrib": "^5.2.0",
"typescript": "^2.6.2",
"yarn": "^1.9.4"
}
}