This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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": "ts-node-lessons-learned",
"version": "0.0.1",
"engines": {
"node": ">10.0.0"
},
"description": "A collection of code/tests demonstrating lessons learned",
"main": "build/app.ts",
"types": "build/app.d.ts",
"files": [
"build/**/*.ts",
"build/**/*.js",
"build/*.js",
"ReadMe.md"
],
"scripts": {
"start": "ts-node $npm_package_main",
"prebuild": " rimraf build/*",
"build": "tsc",
"postbuild": "",
"test": "mocha ",
"test:cov": "nyc mocha ",
"test:fund": "npm --silent run test -- -- -g FUNDAMENTAL",
"test:adv": "npm run test -- -- -g ADVANCED"
},
"repository": {
"type": "git",
"url": "[email protected]:Rolias/ts-starter-kit.git"
},
"keywords": [
"typescript",
"starter-kit"
],
"author": "Tod Gentille",
"license": "GPL-3.0-or-later",
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.7",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^7.5.0",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "3.1.1",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"ts-node": "^8.4.1",
"typescript": "^3.7.2"
}
}