-
Notifications
You must be signed in to change notification settings - Fork 447
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.97 KB
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
{
"name": "easemotion-css",
"version": "1.0.0",
"description": "Human-readable, animation-first CSS framework. Zero dependencies. No build step required.",
"main": "easemotion.css",
"style": "easemotion.css",
"files": [
"easemotion.css",
"easemotion.min.css",
"core/",
"components/",
"easemotion/",
"scss/",
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "node scripts/build-minified-css.mjs",
"resolve-conflict": "node scripts/resolve-conflict.mjs",
"build:scss": "sass scss/_index.scss dist/easemotion.scss.css",
"prepublishOnly": "npm run build",
"test": "vitest run",
"lint": "stylelint \"**/*.css\"",
"lint:duplicates": "node scripts/check-duplicates.mjs",
"lint:fix": "stylelint \"**/*.css\" --fix",
"format": "prettier --write \"**/*.{css,html,js,md}\"",
"validate:manifest": "node scripts/validate-package.mjs",
"validate:bundle": "node scripts/validate-bundle.mjs",
"validate:pack": "node scripts/validate-pack.mjs",
"release:check": "npm run validate:manifest && npm run validate:bundle && npm run build && npm run lint && npm run lint:duplicates && npm test && npm run validate:pack",
"validate:release": "npm run release:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SAPTARSHI-coder/EaseMotion-css.git"
},
"keywords": [
"css",
"framework",
"animation",
"utilities",
"easemotion",
"zero-dependency",
"no-build"
],
"author": "Saptarshi Sadhu (https://github.com/SAPTARSHI-coder)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SAPTARSHI-coder/EaseMotion-css/issues"
},
"homepage": "https://saptarshi-coder.github.io/EaseMotion-css/",
"engines": {
"node": ">=18"
},
"devDependencies": {
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"sass": "^1.77.0",
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0",
"vitest": "^4.1.8"
}
}