This repository was archived by the owner on Mar 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.32 KB
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
{
"name": "entitype-monorepo",
"private": true,
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-spies": "0.0.0",
"@types/chai-string": "^1.1.31",
"@types/mocha": "^2.2.44",
"@types/node": "^8.5.1",
"@types/sinon": "^4.1.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-spies": "^0.7.1",
"chai-string": "^1.4.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"lerna": "^2.5.1",
"mocha": "^4.0.1",
"mochawesome": "^3.0.0",
"nyc": "^11.3.0",
"rimraf": "^2.6.2",
"sinon": "^4.1.3",
"ts-node": "^4.1.0",
"tsconfig-paths": "^2.6.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"prebuild": "rimraf packages/*/dist",
"build": "lerna run build",
"test": "nyc mocha",
"test:all": "npm run test & npm run test:integration",
"test:debug": "mocha --inspect=25650 --inspect-brk",
"test:integration": "cd packages/entitype-integration-tests && npm run test",
"lint": "tslint --project tsconfig.json -c tslint.json",
"cover": "nyc report --reporter=text-lcov | coveralls",
"report": "start ./tmp/mochawesome/mochawesome.html & start ./tmp/lcov-report/index.html",
"update": "lerna exec -- ncu -a -u"
}
}