-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "@npm-packages-collection/minify-css-map",
"description": "A simple CSS minifier and source map generator.",
"author": "Eugene Yevhen Andruszczenko <eugene.andruszczenko@gmail.com>",
"contributors": [
"32teeth <eugene.andruszczenko@gmail.com> (https://github.com/32teeth)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/npm-packages-collection/minify-css-map.git"
},
"license": "CC-BY-SA-4.0",
"version": "0.0.6",
"keywords": [
"css",
"minify",
"map",
"minification",
"npm-package"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"type": "module",
"bin": {
"minify-css-map": "bin/minify-css-map.mjs"
},
"bugs": {
"url": "https://github.com/npm-packages-collection/minify-css-map/issues"
},
"scripts": {
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"publish:github": "npm publish --registry https://npm.pkg.github.com/",
"publish": "npm run publish:npm && npm run publish:github",
"test": "mocha"
},
"devDependencies": {
"chai": "^4.5.0",
"mocha": "^9.2.2"
},
"homepage": "https://github.com/npm-packages-collection/minify-css-map#readme",
"directories": {
"test": "test"
}
}