-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.87 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "functional-programming",
"description": "Functional programming exercises in JavaScript",
"homepage": "https://documentup.com/kutyel/functional-programming",
"version": "0.0.0",
"main": "index.js",
"author": {
"email": "flaviocorpa@gmail.com",
"name": "Flavio Corpa",
"url": "http://flaviocorpa.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kutyel/functional-programming.git"
},
"bugs": {
"url": "https://github.com/kutyel/functional-programming/issues"
},
"keywords": [
"fp",
"functional-javascript",
"functional-programming",
"javascript"
],
"dependencies": {
"accounting": "^0.4.1",
"data.either": "^1.5.1",
"data.task": "^3.1.1",
"immutable": "^3.8.2",
"immutable-ext": "^1.1.2",
"request": "^2.83.0"
},
"devDependencies": {
"@std/esm": "^0.18.0",
"coveralls": "latest",
"git-dirty": "latest",
"husky": "latest",
"jest": "latest",
"lint-staged": "latest",
"prettier-standard": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"@std/esm": {
"esm": "js"
},
"engines": {
"node": ">= 9"
},
"scripts": {
"clean": "rm -rf node_modules",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "npm run pretty && standard-markdown && standard",
"precommit": "lint-staged",
"pretest": "npm run lint",
"pretty": "prettier-standard *.js --single-quote",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"license": "MIT",
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"git add",
"prettier-standard"
]
},
"standard": {
"env": [
"jest"
]
}
}