-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"author": "Patrick Assoa Adou",
"name": "functional-typescript-lib",
"version": "2.2.2",
"description": "",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"compile": "tsc",
"test": "npm run compile && jest",
"testWithCoverage": "npm run compile && jest --coverage ",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run compile",
"prepublishOnly": "npm test && npm run format",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/kanian/functional-typescript-lib"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.11",
"jest": "^24.7.1",
"jest-cli": "^24.7.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.2"
},
"dependencies": {}
}