-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "@emphori/stark",
"description": "Minimal and incredibly lightweight functional programming for JavaScript",
"keywords": [],
"author": "Emphori (https://emphori.co)",
"contributors": [
"Iain Reid <iainreid382@gmail.com> (https://chaff.land)"
],
"homepage": "https://github.com/Emphori/stark#readme",
"license": "MIT",
"main": "lib/stark.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"@emphori/eslint-config": "^0.1.7",
"@emphori/jest-preset": "0.0.5",
"eslint": "^7.11.0",
"jest": "^26.5.3"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "@emphori",
"env": {
"jest": true
}
},
"jest": {
"preset": "@emphori/jest-preset",
"collectCoverageFrom": [
"lib/stark.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emphori/stark.git"
},
"bugs": {
"url": "https://github.com/Emphori/stark/issues"
}
}