-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "@mfields/lib",
"version": "1.1.1",
"description": "A collection of JavaScript functions.",
"main": "index.js",
"type": "module",
"files": [
"index.js",
".internal/",
"BoundNumber.js",
"Interval.js",
"makeInstanceOf.js",
"Tree.js"
],
"scripts": {
"release": "npx standard-version",
"test": "npx mocha --reporter min & standard",
"test:chrome": "karma start ./test/karma/chrome.cjs",
"test:ie": "karma start ./test/karma/ie.cjs",
"test:mac": "karma start ./test/karma/mac.cjs",
"test:win": "karma start ./test/karma/win.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/mfields/jsLib"
},
"author": "Michael Fields",
"license": "MIT",
"keywords": [
"tree",
"interval",
"bound number"
],
"devDependencies": {
"@rollup/plugin-commonjs": "15.0.0",
"@rollup/plugin-node-resolve": "9.0.0",
"chai": "4.2.0",
"cz-conventional-changelog": "3.2.0",
"karma": "5.1.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "1.3.0",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "2.0.1",
"karma-opera-launcher": "1.0.0",
"karma-rollup-preprocessor": "7.0.5",
"karma-safari-launcher": "1.0.0",
"mocha": "8.1.1",
"rollup": "2.26.6",
"rollup-plugin-terser": "7.0.0",
"standard": "14.3.4",
"standard-version": "9.0.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"ignore": [
"*.test.js"
]
}
}