-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ex-patterns",
"version": "0.8.0",
"description": "Elixir-style pattern matching and control flow structures",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:watch": "tsc --watch",
"build": "tsc",
"test:watch": "npx jest --coverage --watchAll",
"test": "npx jest --coverage",
"prepare": "rm -rf ./dist && npm run build",
"preversion": "npm test",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/moritzploss/ex-patterns"
},
"keywords": [
"pattern",
"matching",
"pattern matching",
"elixir",
"immutable",
"functional"
],
"author": "Moritz Ploss",
"license": "MIT",
"bugs": {
"url": "https://github.com/moritzploss/ex-patterns/issues"
},
"homepage": "https://moritzploss.github.io/ex-patterns",
"devDependencies": {
"@babel/types": "^7.11.0",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/ramda": "^0.27.14",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.2.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"ramda": "^0.27.1",
"redux": "^4.0.5"
}
}