-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "@olian/typescript-helpers",
"version": "3.2.1",
"description": "A collection of typescript functions and structures that I usually end up needing when developing.",
"type": "commonjs",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"scripts": {
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "mocha --recursive -r ts-node/register 'src/**/*.spec.ts' ",
"build": "rm -rf ./dist && tsc",
"lint:nofix": "tslint -c ./tslint.json 'src/**/*.ts'",
"lint": "tslint --fix -c ./tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Olian04/typescript-helpers.git"
},
"keywords": [],
"author": "Olian04",
"license": "MIT",
"bugs": {
"url": "https://github.com/Olian04/typescript-helpers/issues"
},
"homepage": "https://github.com/Olian04/typescript-helpers#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-node": "^10.8.0",
"tslint": "^6.1.3",
"typescript": "^4.7.2"
}
}