-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 845 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 845 Bytes
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
{
"name": "@humanwhocodes/ordered-set",
"version": "0.2.1",
"description": "A set whose items can be traversed in order",
"main": "src/ordered-set.js",
"scripts": {
"lint": "eslint src/ tests/",
"test": "npm run lint && nyc --include src/** mocha tests/"
},
"files": [
"src/ordered-set.js"
],
"keywords": [
"data structure",
"set",
"linked list",
"doubly linked list"
],
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/ordered-set.git"
},
"bugs": {
"url": "https://github.com/humanwhocodes/ordered-set/issues"
},
"homepage": "https://github.com/humanwhocodes/ordered-set#readme",
"author": "nzakas",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.8.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
}
}