-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "mutamax",
"version": "0.2.3",
"description": "Collections and objects mutations: adding, removing, renaming properties, and merging",
"license": "MIT",
"main": "mutamax.js",
"author": {
"name": "Rakunacity",
"email": "[email protected]"
},
"keywords": [
"collections",
"objects",
"mutations",
"lodash",
"tranformations",
"merging"
],
"repository": {
"type": "git",
"url": "https://github.com/Rakunacity/mutamax.git"
},
"bugs": {
"url": "https://github.com/Rakunacity/mutamax/issues"
},
"engines": {
"node": ">=4.0.0"
},
"types": "types/index.d.ts",
"scripts": {
"style": "eslint *.js tests/**/*.js",
"test": "mocha -r esm tests",
"validate": "npm run style && npm run test"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"esm": "^3.2.25",
"mocha": "^8.3.2"
}
}