-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "optics.js",
"description": "Lenses, Prisms and Traversals in JavaScript!",
"homepage": "https://nicedoc.io/kutyel/optics.js",
"version": "0.0.0",
"main": "dist/optic.js",
"module": "dist/optic.module.js",
"contributors": [
{
"name": "Flavio Corpa",
"email": "flavio.corpa@47deg.com",
"url": "https://twitter.com/FlavioCorpa"
},
{
"name": "Alejandro Serrano",
"email": "alejandro.serrano@47deg.com",
"url": "https://twitter.com/trupill"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/kutyel/optics.js.git"
},
"bugs": {
"url": "https://github.com/kutyel/optics.js/issues"
},
"keywords": [
"fp",
"lenses",
"optics",
"prisms",
"traversals"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"coveralls": "^3.1.0",
"eslint": "^7.9.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"finepack": "^2.10.5",
"git-authors-cli": "^1.0.28",
"git-dirty": "^1.0.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"microbundle": "^0.12.3",
"npm-check-updates": "^9.0.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"standard-version": "^9.0.0"
},
"engines": {
"node": ">= 12"
},
"files": [
"dist",
"index.js",
"src"
],
"scripts": {
"build": "microbundle",
"clean": "rm -rf node_modules package-lock.json",
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"format": "prettier --write '(__tests__|src)/*.js|index.js'",
"lint": "eslint src/*.js",
"postrelease": "npm run release:tags && npm publish",
"prebuild": "rimraf dist",
"prelint": "npm run format",
"prerelease": "git-dirty && npm run update:check && npm test && npm run contributors && npm run build",
"pretest": "npm run lint",
"release": "git-authors-cli finepack && git add package.json && standard-version -a",
"release:tags": "git push --follow-tags origin master",
"semantic-release": "semantic-release",
"test": "jest --coverage --silent=false",
"test:watch": "jest --watch",
"update": "ncu -u",
"update:check": "ncu -- --error-level 2"
},
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 95,
"lines": 100,
"statements": 97
}
},
"testEnvironment": "node"
},
"lint-staged": {
"package.json": [
"finepack"
]
},
"sideEffects": false,
"source": "index.js",
"unpkg": "dist/optic.umd.js"
}