-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
87 lines (87 loc) · 2.51 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
85
86
87
{
"name": "jstreemap",
"version": "1.28.2",
"description": "Library of associative containers; it implements TreeMap, TreeSet, TreeMultiMap and TreeMultiSet classes",
"main": "jstreemap.js",
"files": [
"/jstreemap.js",
"/index.d.ts"
],
"scripts": {
"analyze-tests": "node ./tools/analyze-tests.js dev-tests.xml",
"esdoc": "esdoc -c ./esdoc.json",
"eslint-fix": "eslint --config=./config/eslint.config.json --fix src/**/*.js test/**/*.js gulpfile.js",
"eslint-watch": "esw --config=./config/eslint.config.json -w --fix src/**/*.js test/**/*.js gulpfile.js",
"test-watch": "cross-env DEV_TEST=true mocha --reporter spec -w --recursive test/specs/*.spec.js",
"dev-test": "cross-env DEV_TEST=true nyc --reporter=html --reporter=text --report-dir=./build/coverage --check-coverage --lines 100 --functions 100 --branches 100 mocha --reporter mocha-multi-reporters --reporter-options configFile=./config/mocha-reporters.json test/specs/*.spec.js",
"prod-test": "mocha --reporter spec test/specs/*.spec.js",
"web-test": "mocha --reporter spec test/browser/*.spec.js",
"webpack": "webpack --config ./config/webpack.config.js"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirusi/jstreemap.git"
},
"keywords": [
"set",
"map",
"multimap",
"multiset",
"red",
"black",
"tree",
"stl",
"iterator",
"multimap",
"treemap",
"multiset",
"treeset",
"lower_bound",
"lowerBound",
"upper_bound",
"upperBound",
"ordered",
"container",
"find",
"insert",
"delete",
"erase",
"template",
"library",
"dictionary",
"key",
"value"
],
"author": "Kirusi Msafiri",
"license": "0BSD",
"bugs": {
"url": "https://github.com/kirusi/jstreemap/issues"
},
"homepage": "https://github.com/kirusi/jstreemap#readme",
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.0",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"esdoc": "^1.0.4",
"esdoc-node": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.18.2",
"eslint-watch": "^3.1.3",
"gh-badges": "^2.1.0",
"gulp": "^4.0.0",
"libxmljs": "^0.19.5",
"mocha": "^4.1.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^11.4.1",
"plugin-error": "^1.0.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"should": "^13.1.3",
"webpack": "^3.10.0"
}
}