guardia-messenger/node_modules/fast-loops/package.json
DESKTOP-TKLFCPRython f29f525c77 refactor: 101.79.17.164 → zioinfo.co.kr 전체 도메인 변환 + Manager UI 배포
- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스)
- Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포
- 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 10:09:17 +09:00

58 lines
1.7 KiB
JSON

{
"name": "fast-loops",
"version": "1.1.4",
"description": "Small, performant & immutable iteration utilities for Arrays and Objects",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"sideEffects": false,
"files": [
"lib/**",
"es/**"
],
"keywords": [
"fast loops",
"utility",
"minimal",
"small"
],
"repository": "https://github.com/robinweser/fast-loops.git",
"author": "robinweser <contact@weser.io>",
"license": "MIT",
"scripts": {
"build": "yarn run clean && yarn build:lib && yarn build:es",
"build:lib": "cross-env BABEL_ENV=commonjs babel modules --out-dir lib --ignore __tests__",
"build:es": "babel modules --out-dir es --ignore __tests__",
"clean": "rimraf es lib coverage",
"check": "yarn lint && yarn test:coverage",
"format": "prettier --write \"modules/**/*.js\"",
"lint": "eslint modules/**/*.js",
"release": "yarn run check && yarn build && npm publish",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:coverage": "cross-env BABEL_ENV=commonjs jest --coverage",
"watch": "yarn test -- --watch"
},
"jest": {
"rootDir": "modules"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"jest": "^23.6.0",
"prettier": "^1.7.4",
"rimraf": "^2.6.1"
}
}