-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "functer",
"version": "0.0.0-development",
"description": "Functors in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"commit": "git-cz",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/*.ts",
"test": "jest --config jestconfig.json",
"test:cov": "npm test -- --collectCoverage=true",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/futantan/functer.git"
},
"keywords": [
"functor"
],
"author": "futantan",
"license": "ISC",
"bugs": {
"url": "https://github.com/futantan/functer/issues"
},
"homepage": "https://github.com/futantan/functer#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/ramda": "github:types/npm-ramda#dist",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"codecov": "^3.6.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ramda": "^0.26.1",
"semantic-release": "^15.13.27",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}