-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.4 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
{
"name": "@iter-tools/imm-stack",
"version": "1.1.0",
"description": "An es6-style immutable Stack",
"main": "lib/stack.cjs",
"module": "lib/stack.mjs",
"types": "lib/stack.d.ts",
"exports": {
"import": "./lib/stack.mjs",
"require": "./lib/stack.cjs"
},
"files": [
"lib/*"
],
"sideEffects": false,
"scripts": {
"test": "jest",
"verify": "npm run lint && jest --coverage && codecov",
"format": "prettier --write '**/*.{js,md}'",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.md": [
"prettier -c"
]
},
"keywords": [
"iterator",
"iterable",
"collection",
"immutable",
"Stack"
],
"repository": "[email protected]:iter-tools/immutable-stack.git",
"author": "Conrad Buck <[email protected]>",
"license": "MIT",
"devDependencies": {
"codecov": "^3.6.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}