-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 947 Bytes
/
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
{
"name": "funktor",
"version": "1.1.2",
"description": "Functional relief helpers",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/japurcell/funktor.git"
},
"keywords": [
"functional"
],
"author": "japurcell",
"license": "ISC",
"bugs": {
"url": "https://github.com/japurcell/funktor/issues"
},
"homepage": "https://github.com/japurcell/funktor#readme",
"devDependencies": {
"@types/jest": "^26.0.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.3",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
}
}