-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1016 Bytes
/
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
{
"name": "@datastructures-js/set",
"version": "4.2.1",
"description": "Enhanced Set that extends javascript ES6 Set",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datastructures-js/set.git"
},
"keywords": [
"set",
"set es6",
"set js",
"union",
"intersect",
"subset",
"superset",
"set data structure"
],
"author": "Eyas Ranjous <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/datastructures-js/set/issues"
},
"homepage": "https://github.com/datastructures-js/set#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"grunt": "^1.0.4",
"grunt-eslint": "^22.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.5",
"mocha": "^6.2.2"
}
}