-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"main": "index.js",
"files": [
"index.js",
"esm.js",
"esm-sync.js",
"umd.js",
"umd-sync.js",
"remap-indexed-keys-after-omit.js",
"remap-indexed-keys-after-omit-sync.js"
],
"scripts": {
"start": "npx nodemon ./dev.js --config ./nodemon.json -q",
"build": "npx babel-node ./scripts/clean-built && npm run babel-build-sync-src && npm run babel-build-async-src && npm run webpack-build",
"babel-build-sync-src": "npx babel -o ./esm-sync.js remap-indexed-keys-after-omit-sync.js",
"babel-build-async-src": "npx babel -o ./esm.js remap-indexed-keys-after-omit.js",
"webpack-build": "npx webpack",
"reprepare": "npx babel-node ./scripts/re-prepare",
"test": "npx nyc mocha --require @babel/register --no-opts --no-package ./*-test.js",
"coverage": "npx nyc report --reporter=text-lcov | npx coveralls",
"lint": "npx eslint --cache remap-indexed-keys-after-omit.js remap-indexed-keys-after-omit-sync.js",
"license": "npx babel-node ./scripts/license",
"changelog": "npx auto-changelog -p"
},
"keywords": [
"object",
"index",
"helper",
"mapper",
"util",
"utilities",
"library",
"modules",
"mapKeys",
"omit",
"remapIndexedKeys",
"remapKeys",
"oopsunome"
],
"peerDependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "7.4.3",
"@babel/register": "^7.4.0",
"auto-changelog": "^1.12.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"execa": "^1.0.0",
"husky": "^1.3.1",
"license-checker": "^25.0.1",
"lint-staged": "^8.1.5",
"listr": "^0.14.3",
"make-dir": "^3.0.0",
"mocha": "^6.1.3",
"nodemon": "^1.18.11",
"nyc": "^13.3.0",
"trash": "^5.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"write-file-atomic": "^2.4.2"
},
"engines": {
"node": ">=10.13.0"
},
"name": "@oopsunome/remap-indexed-keys-after-omit",
"version": "1.0.3",
"description": "针对键为 `index-x` 或 `x-index-y` 类似模式的被索引对象,可在移除某个键值对后,顺序重新索引所有键。",
"author": {
"name": "iyowei",
"email": "[email protected]",
"url": "https://github.com/iTonyYo"
},
"repository": {
"url": "https://github.com/iTonyYo/remap-indexed-keys-after-omit.git",
"type": "git"
},
"homepage": "https://github.com/iTonyYo/remap-indexed-keys-after-omit",
"bugs": "https://github.com/iTonyYo/remap-indexed-keys-after-omit/issues",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
}
}