generated from Zekfad/stub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
{
"type": "module",
"main": "./dist/cjs/bundle.cjs",
"exports": {
".": {
"import": "./dist/esm/bundle.mjs",
"require": "./dist/cjs/bundle.cjs",
"default": "./dist/esm/bundle.cjs"
}
},
"module": "./dist/esm/bundle.js",
"name": "css-patch",
"version": "1.2.0",
"description": "CSS patch generator.",
"keywords": [
"css",
"diff",
"patch",
"stylesheets",
"stylesheet",
"transformer"
],
"homepage": "https://zekfad.github.io/css-patch",
"bugs": {
"url": "https://github.com/Zekfad/css-patch/issues",
"email": "[email protected]"
},
"license": "ISC",
"author": "Zekfad <[email protected]> (https://zekfad.znnme.eu.org)",
"repository": "github:Zekfad/css-patch",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint . --ext .js,.cjs,.mjs",
"dev": "rollup -c --watch --environment mode:dev",
"build": "run-p build:**",
"build:src": "rollup -c",
"build:docs": "jsdoc -c .jsdoc.json --verbose",
"build:def": "tsc",
"test": "nyc --reporter=lcov mocha",
"coverage": "codecov"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/diff": "^5.0.2",
"@types/stylis": "^4.0.2",
"@zekfad/eslint-config": "^1.0.2",
"codecov": "^3.8.3",
"eslint": "^8.6.0",
"eslint-plugin-import": "^2.25.4",
"jsdoc": "^3.6.7",
"magic-string": "^0.25.7",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"tui-jsdoc-template": "^1.2.2",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"diff": "^5.0.0",
"stylis": "^4.0.13"
}
}