This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.32 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
{
"name": "frans",
"version": "1.0.0",
"description": "A minimal functional programming library",
"source": "src/index.ts",
"main": "dist/frans.js",
"umd:main": "dist/frans.umd.js",
"module": "dist/frans.module.js",
"esmodule": "dist/frans.esm.js",
"types": "dist/frans.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/adambrgmn/frans.git"
},
"author": {
"name": "Adam Bergman",
"email": "[email protected]"
},
"homepage": "https://github.com/adambrgmn/frans#readme",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"test": "jest",
"lint": "eslint src scripts",
"type-check": "tsc --noEmit",
"validate": "yarn run lint && yarn run test --coverage && yarn run build",
"release": "yarn build && yarn changeset publish",
"create-module": "node scripts/create-module.js",
"mv:ts": "sh -c 'git mv src/${0}.js src/${0}.ts && git mv src/__tests__/${0}.js src/__tests__/${0}.ts'"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@changesets/changelog-github": "^0.2.7",
"@changesets/cli": "^2.10.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-eslint": "^10.1.0",
"benchmark": "^2.1.4",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"microbundle": "^0.12.3",
"ora": "^5.1.0",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.{js,ts,jsx,tsx,json,md,yml,html}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always"
}
}