-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "@raw-js/iterable",
"version": "1.0.0",
"description": "Make an object iterable implementing iterable protocol ",
"author": "[email protected]",
"main": "index.js",
"keywords": [
"iterable",
"iterator",
"prototype"
],
"type": "module",
"scripts": {
"test": "NODE_ENV=test node --experimental-vm-modules ./node_modules/.bin/jest --verbose",
"lint": "eslint .",
"types": "tsc --build tsconfig.json",
"blue-ball": "npm run lint && npm run types && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuartero/raw-js-iterable.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/manuartero/raw-js-iterable/issues"
},
"homepage": "https://github.com/manuartero/raw-js-iterable#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"eslint": "^8.30.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1"
}
}