-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "@moscoso/models",
"version": "0.0.1",
"description": "Common Typescript interfaces and classes for models reused in all my games",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"compile": "tsc",
"develop": "tsc -w",
"lint": "eslint ./src/**",
"lint-fix": "eslint ./src/** --fix",
"tdd": "ts-mocha \"src/**/*.spec.ts\" -w --watch-extensions ts",
"test": "ts-mocha ./src/**/*.spec.ts",
"coverage": "nyc npm run test"
},
"author": "Chris Moscoso",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^10.0.0",
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"chai": "^4.3.7",
"eslint": "^8.27.0",
"eslint-config-standard": "^17.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rxjs": "^7.5.7",
"ts-mocha": "^10.0.0",
"ts-node": "^10.1.0",
"typescript": "^4.9.3"
}
}