-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1 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
{
"name": "alterset",
"version": "1.0.3",
"description": "alterSet is an Object manipulation library, It extensively uses functional prototypes to leverage the prototypical chain and build functions on top of it.",
"main": "index.js",
"homepage":"https://akshitgrover.github.io/alterSet",
"scripts": {
"test": "nyc ./node_modules/.bin/mocha ./tests/*.js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": {
"name": "Akshit Grover",
"email": "[email protected]",
"url": "https://github.com/akshitgrover"
},
"repository":{
"type": "git",
"url": "https://github.com/akshitgrover/alterSet"
},
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^5.5.0",
"expect": "^23.6.0",
"mocha": "^5.2.0",
"jsdoc": "^3.5.5",
"minami": "^1.2.3"
},
"keywords":[
"object",
"prototype",
"manipulation",
"get",
"keys",
"values",
"add",
"find",
"from",
"functions"
]
}