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
| {
| "name": "dommatrix",
| "version": "1.0.3",
| "description": "ES6+ shim for DOMMatrix",
| "main": "dist/dommatrix.js",
| "module": "dist/dommatrix.esm.js",
| "types": "types/index.d.ts",
| "jsnext": "src/index.js",
| "files": [
| "dist",
| "types",
| "src"
| ],
| "scripts": {
| "test": "npx cypress run",
| "cypress": "npx cypress open",
| "coverage:report": "nyc report --reporter=lcov --reporter=json --reporter=text --reporter=json-summary",
| "build": "npm run lint:js && npm-run-all --parallel build-* && npm run docs-copy",
| "custom-build": "rollup -c --environment",
| "fix:js": "eslint src --config .eslintrc --fix",
| "lint:js": "eslint src --config .eslintrc",
| "build:ts": "tsc -d",
| "build-js": "rollup --environment FORMAT:umd,MIN:false -c",
| "docs-copy": "ncp dist/dommatrix.js docs/dommatrix.js",
| "build-js-min": "rollup --environment FORMAT:umd,MIN:true -c",
| "build-esm": "rollup --environment FORMAT:esm,MIN:false -c",
| "build-esm-min": "rollup --environment FORMAT:esm,MIN:true -c"
| },
| "repository": {
| "type": "git",
| "url": "git+https://github.com/thednp/dommatrix.git"
| },
| "keywords": [
| "dommatrix",
| "cssmatrix",
| "shim",
| "polyfill",
| "nodejs",
| "dom",
| "css",
| "transform",
| "javascript"
| ],
| "author": "thednp",
| "license": "MIT",
| "bugs": {
| "url": "https://github.com/thednp/dommatrix/issues"
| },
| "homepage": "https://thednp.github.io/dommatrix/",
| "devDependencies": {
| "@bahmutov/cypress-esbuild-preprocessor": "^2.1.3",
| "@cypress/code-coverage": "^3.9.12",
| "@rollup/plugin-buble": "^0.21.3",
| "@rollup/plugin-json": "^4.1.0",
| "@rollup/plugin-node-resolve": "^7.1.3",
| "cypress": "^9.6.1",
| "esbuild": "^0.14.30",
| "eslint": "^7.22.0",
| "eslint-config-airbnb-base": "^14.2.1",
| "eslint-plugin-import": "^2.22.1",
| "eslint-plugin-vue": "^7.7.0",
| "ncp": "^2.0.0",
| "npm-run-all": "^4.1.5",
| "rollup": "^2.28.1",
| "rollup-plugin-terser": "^5.3.0",
| "typescript": "^4.5.2"
| }
| }
|
|