-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@aureooms/js-collections-ordereddict",
"description": "Python's ordereddict data structure for JavaScript",
"version": "4.0.0",
"author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
"ava": {
"require": [
"@babel/polyfill",
"@babel/register"
],
"files": [
"test/src/**/*"
],
"timeout": "1m"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"bugs": {
"url": "https://github.com/make-github-pseudonymous-again/js-collections-ordereddict/issues"
},
"dependencies": {
"@aureooms/js-collections-dict": "^4.0.0",
"@aureooms/js-dll": "^7.0.0",
"@aureooms/js-error": "^4.0.0",
"@aureooms/js-mapping": "^5.0.0"
},
"devDependencies": {
"@aureooms/js-compare": "1.4.8",
"@aureooms/js-itertools": "5.0.1",
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.13.10",
"@babel/register": "7.13.8",
"ava": "3.15.0",
"coveralls": "3.1.0",
"esdoc": "1.1.0",
"esdoc-inject-script-plugin": "1.0.0",
"esdoc-inject-style-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"np": "7.4.0",
"nyc": "15.1.0"
},
"files": [
"lib"
],
"homepage": "http://make-github-pseudonymous-again.github.io/js-collections-ordereddict/",
"keywords": [
"bisect",
"collection",
"collections",
"count",
"counter",
"dict",
"hash",
"heapq",
"javascript",
"js",
"list",
"map"
],
"license": "AGPL-3.0",
"main": "lib/index.js",
"repository": {
"url": "https://github.com/make-github-pseudonymous-again/js-collections-ordereddict.git",
"type": "git"
},
"scripts": {
"build": "rm -rf lib && babel src -d lib",
"cover": "nyc --reporter=lcov npm test",
"esdoc": "esdoc",
"prepare": "npm run build",
"release": "np",
"test": "ava"
}
}