-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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": "generic-collections-js",
"version": "0.2.0",
"description": "Generic type collection classes for arrays, maps and sets",
"main": "index.js",
"scripts": {
"format": "./node_modules/.bin/standard --fix",
"lint": "./node_modules/.bin/standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test ./node_modules/.bin/mocha ./test/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vigan-abd/generic-collections.git"
},
"engine": {
"node": ">=10.0"
},
"keywords": [
"generic",
"collection",
"array",
"map",
"set"
],
"author": "vigan-abd",
"license": "MIT",
"bugs": {
"url": "https://github.com/vigan-abd/generic-collections/issues"
},
"homepage": "https://github.com/vigan-abd/generic-collections#readme",
"devDependencies": {
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"husky": "^4.2.3",
"mocha": "^7.1.0",
"standard": "^14.3.2"
},
"standard": {
"globals": [
"it",
"describe",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}