forked from rafaelw/mutation-summary
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
{
"name": "mutation-summary",
"version": "1.0.0",
"license": "Apache-2.0",
"description": "Makes observing the DOM fast and easy",
"keywords": [
"MutationObserver",
"DOM"
],
"homepage": "https://github.com/mmacfadden/mutation-summary",
"contributors": [
{
"name": "Rafael Weinstein",
"url": "https://github.com/rafaelw"
},
{
"name": "Michael MacFadden",
"url": "https://github.com/mmacfadden"
}
],
"main": "dist/lib/index.js",
"module": "dist/module/index.js",
"browser": "dist/umd/mutation-summary.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"docs"
],
"scripts": {
"test": "karma start",
"build:esm": "tsc --outDir dist/module",
"build:commonjs": "tsc --module commonjs --outDir dist/lib",
"build:types": "tsc --declaration true --emitDeclarationOnly true --outDir dist/types && node ./scripts/enhance-types.js",
"build:umd": "rollup -c rollup.config.js",
"build:api": "typedoc",
"dist": "npm run build:esm && npm run build:commonjs && npm run build:umd && npm run build:types && npm run build:api",
"clean": "rimraf dist",
"prepack": "npm run dist"
},
"repository": {
"type": "git",
"url": "https://github.com/mmacfadden/mutation-summary.git"
},
"bugs": {
"url": "https://github.com/mmacfadden/mutation-summary/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-typescript": "8.2.1",
"@types/chai": "^4.2.18",
"@types/jsdom": "^16.2.10",
"@types/mocha": "latest",
"chai": "^4.3.4",
"global-jsdom": "^8.1.0",
"jsdom": "^16.5.3",
"karma": "6.3.2",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "5.5.1",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"rollup": "2.47.0",
"rollup-plugin-terser": "7.0.2",
"ts-node": "9.1.1",
"tslib": "^2.2.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
}
}