-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "n-set",
"version": "2.0.1",
"description": "Allows to put arrays into sets. Works similarly like ES6 Sets.",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"prepublishOnly": "tsc -p ./ --outDir dist/",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daninet/n-set.git"
},
"keywords": [
"set",
"sets",
"multiple",
"tuple",
"tuples",
"nset",
"collection",
"many",
"items",
"values",
"subarray",
"array",
"deep",
"comparison",
"typescript"
],
"author": "Daniel Biro",
"license": "MIT",
"bugs": {
"url": "https://github.com/Daninet/n-set/issues"
},
"homepage": "https://github.com/Daninet/n-set#readme",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"dependencies": {}
}