forked from hcodes/snowflakes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.99 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
{
"name": "magic-snowflakes",
"description": "Falling snowflakes",
"version": "6.3.0",
"author": {
"name": "Denis Seleznev",
"email": "[email protected]",
"url": "https://github.com/hcodes/snowflakes"
},
"main": "dist/snowflakes.js",
"typings": "dist/index.d.ts",
"module": "dist/snowflakes.esm.js",
"homepage": "https://github.com/hcodes/snowflakes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/hcodes/snowflakes.git"
},
"keywords": [
"snow",
"snowflakes",
"snowflake",
"flake",
"newyear",
"christmas",
"falling"
],
"engines": {
"node": ">=10"
},
"files": [
"dist/**/*.{js,css,ts}",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.2",
"del-cli": "5.1.0",
"eslint": "8.56.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"postcss-inline-svg": "^6.0.0",
"postcss-nested": "^6.0.1",
"rollup": "^4.9.0",
"terser": "^5.26.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"scripts": {
"test": "eslint . & npm run typecheck",
"typecheck": "tsc --noEmit",
"build": "npm-run-all clean make inject:css minify",
"clean": "del-cli dist/*",
"minify": "run-p minify:*",
"minify:js": "terser ./dist/snowflakes.js -o ./dist/snowflakes.min.js -c -m",
"minify:light": "terser ./dist/snowflakes.light.js -o ./dist/snowflakes.light.min.js -c -m",
"inject:css": "node tools/inject-css.js",
"make": "run-p make:*",
"make:ts": "rollup --config rollup.config.mjs",
"make:css": "postcss --no-map src/css/*.css --dir dist",
"prepare": "npm run build"
},
"browserslist": [
"ie >= 11",
"Firefox >= 60",
"Chrome >= 60",
"iOS >= 8",
"Safari >= 8",
"Android > 4.0"
]
}