-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
79 lines (79 loc) · 2.26 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
{
"name": "marky",
"version": "1.2.5",
"description": "Performance timer based on performance.mark() and measure()",
"main": "lib/marky.cjs.js",
"jsnext:main": "lib/marky.es.js",
"module": "lib/marky.es.js",
"scripts": {
"clean": "rimraf lib dist && mkdirp lib dist",
"rollup-cjs": "rollup -c config/rollup.config.cjs.js && rollup -c config/rollup.config.browser.cjs.js",
"rollup-es": "rollup -c config/rollup.config.es.js && rollup -c config/rollup.config.browser.es.js",
"rollup-iife": "rollup -c config/rollup.config.iife.js",
"rollup": "npm-run-all --parallel rollup-cjs rollup-es rollup-iife",
"minify": "terser -mc < dist/marky.js > dist/marky.min.js",
"prepare": "npm run build",
"build": "npm-run-all clean rollup minify",
"test": "npm run rollup-cjs && mocha test/test.js",
"test-browser": "karma start --single-run",
"test-browser-debug": "karma start --browsers=Chrome --single-run=false",
"lint": "standard"
},
"keywords": [
"mark",
"measure",
"performance",
"user timing",
"timing",
"polyfill",
"stopwatch",
"timer"
],
"author": "Nolan Lawson <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.1.0",
"assert": "^2.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.8",
"mkdirp": "^1.0.4",
"mocha": "^9.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"standard": "^16.0.4",
"terser": "^5.10.0"
},
"files": [
"lib",
"dist"
],
"browser": {
"./lib/marky.cjs.js": "./lib/marky.browser.cjs.js",
"./lib/marky.es.js": "./lib/marky.browser.es.js"
},
"standard": {
"ignore": [
"lib",
"dist"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nolanlawson/marky.git"
},
"bugs": {
"url": "https://github.com/nolanlawson/marky/issues"
},
"homepage": "https://github.com/nolanlawson/marky#readme",
"volta": {
"node": "16.15.1",
"yarn": "1.22.19"
}
}